2022-09-06 01:20:06 +0200 | logzet | (~quassel@2001:9e8:e508:1700:dabb:c1ff:fed3:a1b9) (Ping timeout: 260 seconds) |
2022-09-06 01:44:02 +0200 | mvk | (~mvk@2607:fea8:5ce3:8500::a1ec) |
2022-09-06 02:08:59 +0200 | mesaoptimizer | (apotheosis@user/PapuaHardyNet) |
2022-09-06 02:10:13 +0200 | rekahsoft | (~rekahsoft@bras-base-wdston4533w-grc-02-142-113-160-8.dsl.bell.ca) |
2022-09-06 02:10:24 +0200 | <mesaoptimizer> | just want to make a sort-of-bug report: if you make an "M-n m" map using `additionalKeys` and make "M-n b" map using `additionalKeysP`, it seems that if you apply them in order, the second function wipes the previous mappings of "M-n" |
2022-09-06 02:11:39 +0200 | <mesaoptimizer> | to successfully figure out the issue, I had to use `submapDefault (spawn "xmessage 'incorrect')` to find out that the map wasn't even being loaded |
2022-09-06 02:11:57 +0200 | <geekosaur> | there's no good way to deal with that since they can't see each others' keymaps |
2022-09-06 02:11:57 +0200 | <mesaoptimizer> | the previous map, that is |
2022-09-06 02:12:57 +0200 | <mesaoptimizer> | I don't even mean a conflict: I expected that there would be a merging of maps and that "M-n" submaps from both functions would work |
2022-09-06 02:13:22 +0200 | <geekosaur> | but that's the point, they can't see each others' maps at all |
2022-09-06 02:14:02 +0200 | <geekosaur> | and worse, it's actually a function that has to be fed a config record to produce a map, and then the Submap is itself a function as seen from outside, not a Map, and there's no way to "peek inside" |
2022-09-06 02:14:15 +0200 | <geekosaur> | or even to tell that it's a submap function |
2022-09-06 02:14:23 +0200 | <mesaoptimizer> | oh, now I get it |
2022-09-06 02:14:43 +0200 | <geekosaur> | fixing this would require teaching the core about submaps directly |
2022-09-06 02:14:50 +0200 | <mesaoptimizer> | a key is now tied to a function of a specific map only, there's no JSON-like tree where you can merge submaps that I had in mind |
2022-09-06 02:15:56 +0200 | <geekosaur> | right, a submap is a function which has a keymap as a parameter. as I said, we'd have to change the core to do something like that JSON tree to make things work like that |
2022-09-06 02:17:03 +0200 | <geekosaur> | personally I'd just pick one and not try to stack them |
2022-09-06 02:18:25 +0200 | <[Leary]> | Well, EZConfig doesn't need to immediately transform what it's given into a submap action. It could instead build a representation in ExtensibleConf, writing submaps that read from the right part of it. |
2022-09-06 02:18:44 +0200 | <[Leary]> | So you really don't need to touch core. |
2022-09-06 02:18:58 +0200 | <mesaoptimizer> | sure, I'll do that. Thanks for explaining. |
2022-09-06 02:18:59 +0200 | <geekosaur> | true. although ExtensibleConf didn't exist back when it was written |
2022-09-06 02:19:30 +0200 | <geekosaur> | EZConfig is from something like 0.4 |
2022-09-06 02:49:28 +0200 | noex | (~null@user/noex) (Quit: :q!) |
2022-09-06 02:52:15 +0200 | thunderrd | (~thunderrd@183.182.111.208) |
2022-09-06 03:54:06 +0200 | blaa | (~bla@79.191.249.31.ipv4.supernova.orange.pl) (Ping timeout: 268 seconds) |
2022-09-06 03:54:09 +0200 | bla | (~bla@83.24.90.189.ipv4.supernova.orange.pl) |
2022-09-06 04:02:23 +0200 | banc | (banc@gateway/vpn/airvpn/banc) (Ping timeout: 244 seconds) |
2022-09-06 04:03:49 +0200 | <dpn`> | bit of a long shot here, but has anyone figured out that weird interplay with picom and the RGBA of window borders being changed? In this screenshot the left and top right borders are both inactive - bottom right is active https://imgur.com/a/JKNpf5F |
2022-09-06 04:23:34 +0200 | banc | (banc@gateway/vpn/airvpn/banc) |
2022-09-06 04:40:37 +0200 | td_ | (~td@muedsl-82-207-238-026.citykom.de) (Ping timeout: 244 seconds) |
2022-09-06 04:42:22 +0200 | td_ | (~td@muedsl-82-207-238-233.citykom.de) |
2022-09-06 05:24:58 +0200 | noex | (~null@user/noex) |
2022-09-06 05:37:27 +0200 | mvk | (~mvk@2607:fea8:5ce3:8500::a1ec) (Ping timeout: 244 seconds) |
2022-09-06 05:49:36 +0200 | rekahsoft | (~rekahsoft@bras-base-wdston4533w-grc-02-142-113-160-8.dsl.bell.ca) (Ping timeout: 260 seconds) |
2022-09-06 05:50:46 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 260 seconds) |
2022-09-06 06:17:36 +0200 | thunderrd | (~thunderrd@183.182.111.208) (Ping timeout: 260 seconds) |
2022-09-06 07:42:21 +0200 | benin0 | (~benin@183.82.28.141) |
2022-09-06 08:13:32 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) |
2022-09-06 08:56:35 +0200 | benin0 | (~benin@183.82.28.141) (Quit: The Lounge - https://thelounge.chat) |
2022-09-06 09:11:51 +0200 | <liskin> | dpn`: are you running the latest xmonad? This has been fixed for a while I believe |
2022-09-06 09:20:26 +0200 | sogens | (~sogens@211.30.36.43) (Quit: WeeChat 3.5) |
2022-09-06 09:22:03 +0200 | sogens | (~sogens@211.30.36.43) |
2022-09-06 09:27:10 +0200 | m5zs7k | (aquares@web10.mydevil.net) (Ping timeout: 268 seconds) |
2022-09-06 09:28:17 +0200 | m5zs7k | (aquares@web10.mydevil.net) |
2022-09-06 09:46:03 +0200 | <mesaoptimizer> | how do I insert a physical keypress such as c-t? I'm trying to emulate tmux's keybind passthrough feature |
2022-09-06 09:48:34 +0200 | cfricke | (~cfricke@user/cfricke) |
2022-09-06 09:49:45 +0200 | <dminuoso> | xdotool |
2022-09-06 09:53:14 +0200 | <dminuoso> | mesaoptimizer: or sendKey/sendKeyWindow |
2022-09-06 09:53:50 +0200 | <dminuoso> | Though these are slightly brittle |
2022-09-06 10:05:27 +0200 | sogens | (~sogens@211.30.36.43) (Quit: WeeChat 3.5) |
2022-09-06 10:06:50 +0200 | sogens | (~sogens@211.30.36.43) |
2022-09-06 10:22:31 +0200 | ft | (~ft@p4fc2a0f5.dip0.t-ipconnect.de) (Quit: Lost terminal) |
2022-09-06 10:41:11 +0200 | <mesaoptimizer> | dminuoso: thank you very much, I've finally upgraded my xmonad to a significantly more comfy keymap |
2022-09-06 10:47:27 +0200 | thunderrd | (~thunderrd@183.182.115.194) |
2022-09-06 11:00:12 +0200 | megachicken[m] | (~kfchicken@2001:470:69fc:105::1:86e5) (Quit: You have been kicked for being idle) |
2022-09-06 11:00:57 +0200 | thunderrd | (~thunderrd@183.182.115.194) (Remote host closed the connection) |
2022-09-06 11:01:51 +0200 | thunderrd | (~thunderrd@183.182.115.194) |
2022-09-06 11:03:45 +0200 | thunderrd | (~thunderrd@183.182.115.194) (Remote host closed the connection) |
2022-09-06 11:14:57 +0200 | <mesaoptimizer> | why does `flashText def 0.05` cause the text flashed to stick on screen for many seconds? I don't get it |
2022-09-06 11:32:48 +0200 | <mesaoptimizer> | oh my bad, I didn't add a `handleEventHook` |
2022-09-06 11:45:08 +0200 | <Solid> | Another module that should really be a combinator |
2022-09-06 11:48:41 +0200 | <Solid> | Mh, maybe not if one wants to use it for several keybindings |
2022-09-06 12:01:47 +0200 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 3.6) |
2022-09-06 12:22:31 +0200 | thunderrd | (~thunderrd@183.182.115.194) |
2022-09-06 12:40:33 +0200 | chomwitt | (~chomwitt@2a02:587:dc16:fe00:36b8:e455:625c:e00b) |
2022-09-06 12:52:42 +0200 | sogens | (~sogens@211.30.36.43) (Quit: WeeChat 3.5) |
2022-09-06 12:53:01 +0200 | sogens | (~sogens@211.30.36.43) |
2022-09-06 12:59:42 +0200 | <liskin> | ExtensibleConf would handle that, but having an endo XConfig combinator for adding keybindings would be very non-standard |
2022-09-06 13:02:07 +0200 | cfricke | (~cfricke@user/cfricke) |
2022-09-06 14:55:30 +0200 | <Solid> | yeah, probably not a good idea; especially since one is meant to add flashText to existing keybindings |
2022-09-06 15:12:12 +0200 | sogens | (~sogens@211.30.36.43) (Quit: WeeChat 3.5) |
2022-09-06 15:12:29 +0200 | sogens | (~sogens@211.30.36.43) |
2022-09-06 15:18:22 +0200 | Ehllie | (~Thunderbi@217-67-208-66.itsa.net.pl) |
2022-09-06 16:17:36 +0200 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 3.6) |
2022-09-06 16:47:53 +0200 | Ehllie | (~Thunderbi@217-67-208-66.itsa.net.pl) (Ping timeout: 252 seconds) |
2022-09-06 17:00:24 +0200 | logzet | (~quassel@2001:9e8:e51c:4700:dabb:c1ff:fed3:a1b9) |
2022-09-06 17:14:15 +0200 | tikosh | (~tikosh@2601:201:301:c5e0::5d9b) |
2022-09-06 17:15:45 +0200 | <tikosh> | i got a parse error in an end of a line on my xmonad.hs here is the wgetpaste https://dpaste.com/8R8XH9CP6 |
2022-09-06 17:17:13 +0200 | <alternateved> | tikosh: do you close somewhere that subtitle parentheses where myKeys are? |
2022-09-06 17:18:10 +0200 | <tikosh> | oh! Thanks for pointing that out! |
2022-09-06 17:22:28 +0200 | <tikosh> | here is the updated one https://dpaste.com/F8NE65GSJ |
2022-09-06 17:22:47 +0200 | <tikosh> | thanks so much for your help!! I appreciate what you guys do. |
2022-09-06 17:22:57 +0200 | <tikosh> | I can finally upload this to my githu |
2022-09-06 17:23:53 +0200 | tikosh | (~tikosh@2601:201:301:c5e0::5d9b) (Quit: Client closed) |
2022-09-06 17:25:47 +0200 | tikosh | (~tikosh@2601:201:301:c5e0::5d9b) |
2022-09-06 17:26:37 +0200 | <tikosh> | once again, thanks so much! I gotta go edit my config now. Stay blessed, my dudes and dudettes! |
2022-09-06 17:26:50 +0200 | tikosh | (~tikosh@2601:201:301:c5e0::5d9b) (Client Quit) |
2022-09-06 17:28:47 +0200 | <alternateved> | Haha, glad I could be of help. |
2022-09-06 18:02:03 +0200 | theliver[m]1 | (~theliverm@2001:470:69fc:105::2:25e4) (Quit: You have been kicked for being idle) |
2022-09-06 18:09:37 +0200 | Ehllie | (~Thunderbi@user-94-254-164-154.play-internet.pl) |
2022-09-06 18:11:54 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
2022-09-06 18:22:08 +0200 | Ehllie | (~Thunderbi@user-94-254-164-154.play-internet.pl) (Read error: Connection reset by peer) |
2022-09-06 19:11:35 +0200 | noex | (~null@user/noex) (Quit: :q!) |
2022-09-06 19:29:09 +0200 | Ehllie | (~Thunderbi@79.184.238.70.ipv4.supernova.orange.pl) |
2022-09-06 20:26:07 +0200 | <xmonadtrack> | New xmonad-contrib branch created: pull/751 (4 commits) https://github.com/xmonad/xmonad-contrib/pull/751 |
2022-09-06 20:26:07 +0200 | <xmonadtrack> | xmonad-contrib Tony Zorman https://github.com/xmonad/xmonad-contrib/pull/751 * v0.17.1-6-g9b6bef7e: X.D.Extending: Add links to headings (2 days ago, 1 file, 5+ 5-) https://github.com/xmonad/xmonad-contrib/commit/9b6bef7e9dc0 |
2022-09-06 20:26:12 +0200 | <xmonadtrack> | xmonad-contrib Tony Zorman https://github.com/xmonad/xmonad-contrib/pull/751 * v0.17.1-7-gc7ff09e6: X.D.Extending: Update hooks (2 days ago, 1 file, 19+ 20-) https://github.com/xmonad/xmonad-contrib/commit/c7ff09e6004c |
2022-09-06 20:26:21 +0200 | <xmonadtrack> | xmonad-contrib Tony Zorman https://github.com/xmonad/xmonad-contrib/pull/751 * v0.17.1-8-gd91529ff: X.D.Extending: Rewrite keyDel (2 days ago, 1 file, 52+ 31-) https://github.com/xmonad/xmonad-contrib/commit/d91529ffaf20 |
2022-09-06 20:26:29 +0200 | <xmonadtrack> | xmonad-contrib Tony Zorman https://github.com/xmonad/xmonad-contrib/pull/751 * v0.17.1-9-gfa88bd5d: X.D.Extending: Remove keyAddDel and logHook (11 hours ago, 1 file, 11+ 87-) https://github.com/xmonad/xmonad-contrib/commit/fa88bd5d22ac |
2022-09-06 20:33:07 +0200 | ft | (~ft@p4fc2a0f5.dip0.t-ipconnect.de) |
2022-09-06 20:35:57 +0200 | sogens | (~sogens@211.30.36.43) (Ping timeout: 252 seconds) |
2022-09-06 20:46:08 +0200 | sogens | (~sogens@pa49-182-80-226.pa.qld.optusnet.com.au) |
2022-09-06 22:01:42 +0200 | Ehllie | (~Thunderbi@79.184.238.70.ipv4.supernova.orange.pl) (Ping timeout: 244 seconds) |
2022-09-06 23:01:43 +0200 | benin0 | (~benin@183.82.28.141) |
2022-09-06 23:13:30 +0200 | werneta | (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 268 seconds) |
2022-09-06 23:21:35 +0200 | werneta | (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) |
2022-09-06 23:46:19 +0200 | justache | justache_test |
2022-09-06 23:46:34 +0200 | justache_test | justache |