| 2022-07-11 00:50:48 +0000 | sogens | (~sogens@211.30.26.217) (Quit: WeeChat 3.5) |
| 2022-07-11 00:51:11 +0000 | sogens | (~sogens@211.30.26.217) |
| 2022-07-11 00:53:03 +0000 | sogens | (~sogens@211.30.26.217) (Client Quit) |
| 2022-07-11 00:53:23 +0000 | sogens | (~sogens@211.30.26.217) |
| 2022-07-11 01:13:46 +0000 | sogens | (~sogens@211.30.26.217) (Quit: WeeChat 3.5) |
| 2022-07-11 01:54:21 +0000 | mvk | (~mvk@2607:fea8:5ce3:8500::909a) |
| 2022-07-11 02:05:27 +0000 | banc | (banc@gateway/vpn/airvpn/banc) (Ping timeout: 276 seconds) |
| 2022-07-11 02:10:44 +0000 | steve__ | (~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 255 seconds) |
| 2022-07-11 02:24:21 +0000 | banc | (banc@gateway/vpn/airvpn/banc) |
| 2022-07-11 02:29:30 +0000 | td_ | (~td@muedsl-82-207-238-125.citykom.de) (Ping timeout: 240 seconds) |
| 2022-07-11 02:31:32 +0000 | td_ | (~td@muedsl-82-207-238-180.citykom.de) |
| 2022-07-11 02:39:02 +0000 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 272 seconds) |
| 2022-07-11 02:43:06 +0000 | terrorjack | (~terrorjac@2a01:4f8:1c1e:509a::1) (Quit: The Lounge - https://thelounge.chat) |
| 2022-07-11 02:45:32 +0000 | terrorjack | (~terrorjac@2a01:4f8:1c1e:509a::1) |
| 2022-07-11 03:44:58 +0000 | mvk | (~mvk@2607:fea8:5ce3:8500::909a) (Ping timeout: 244 seconds) |
| 2022-07-11 04:13:32 +0000 | ^[ | (~user@user//x-8473491) |
| 2022-07-11 04:34:12 +0000 | <Zedgamer9128[m]> | why is this error happening |
| 2022-07-11 04:34:13 +0000 | <Zedgamer9128[m]> | ``` |
| 2022-07-11 04:34:13 +0000 | <Zedgamer9128[m]> | xmonad.hs:88:27-51: Non-exhaustive patterns in lambda |
| 2022-07-11 04:34:51 +0000 | <Zedgamer9128[m]> | , ppOrder = \[ws, l, _, wins] -> [ws] |
| 2022-07-11 04:34:56 +0000 | <Zedgamer9128[m]> | this is the code |
| 2022-07-11 04:35:08 +0000 | <Zedgamer9128[m]> | i only want ws info |
| 2022-07-11 04:36:09 +0000 | <Zedgamer9128[m]> | and i think it was working before |
| 2022-07-11 04:36:28 +0000 | <Zedgamer9128[m]> | and also in xmobar all i see is updatin |
| 2022-07-11 04:36:30 +0000 | <Zedgamer9128[m]> | s/updatin/updating/ |
| 2022-07-11 04:44:15 +0000 | <Lears> | Zedgamer9128[m]: `[ws, l, _, wins]` is a pattern that only accepts lists of length four, producing an error on input of any other length. Since you just want the first element, you can write this function as `take 1`, which takes a prefix of length at most one and never fails. |
| 2022-07-11 04:45:01 +0000 | <Zedgamer9128[m]> | Lears: oh how would i do that |
| 2022-07-11 04:45:51 +0000 | <Lears> | , ppOrder = take 1 |
| 2022-07-11 04:48:13 +0000 | <Zedgamer9128[m]> | this worked |
| 2022-07-11 04:48:14 +0000 | <Zedgamer9128[m]> | Lears: ``` |
| 2022-07-11 04:48:14 +0000 | <Zedgamer9128[m]> | , ppOrder = \(ws:_:_:_) -> [ws] |
| 2022-07-11 04:48:14 +0000 | <Zedgamer9128[m]> | ``` |
| 2022-07-11 04:48:31 +0000 | <Zedgamer9128[m]> | from dynamicLog documentation |
| 2022-07-11 04:53:14 +0000 | <Lears> | That's a pattern which fails if the list has fewer than three elements, despite only using the first. It's not really idiomatic haskell, but I guess this function is supposed to make some assumptions about the size of its input. |
| 2022-07-11 04:58:31 +0000 | <Zedgamer9128[m]> | what is the latest xmonad version |
| 2022-07-11 04:59:02 +0000 | <Zedgamer9128[m]> | i have it installed by stack. how would upgrade xmonad to the latest version by stack |
| 2022-07-11 04:59:10 +0000 | <Zedgamer9128[m]> | * how would i upgrade xmonad |
| 2022-07-11 04:59:24 +0000 | <Zedgamer9128[m]> | do i just git pull and stack install |
| 2022-07-11 05:58:18 +0000 | <Solid> | Zedgamer9128[m]: yes |
| 2022-07-11 05:58:52 +0000 | <Solid> | r.e. ppOrder: yes it's unfortunate that it takes a list and not something more concrete, but much to late to change that now :( |
| 2022-07-11 06:08:24 +0000 | lambdabot | (~lambdabot@haskell/bot/lambdabot) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | fcser | (~fcser@booty.farted.net) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | eq_w | (~eqw@31.134.178.99) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | ghormoon | (~ghormoon@ghorland.net) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | x88x88x | (~x88x88x@149.28.53.172) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | exordiri | (~ex@user/exordiri) (*.net *.split) |
| 2022-07-11 06:08:24 +0000 | haskl | (~haskl@user/haskl) (*.net *.split) |
| 2022-07-11 06:08:34 +0000 | fcser | (~fcser@booty.farted.net) |
| 2022-07-11 06:09:04 +0000 | eq_w | (~eqw@31.134.178.99) |
| 2022-07-11 06:09:21 +0000 | lambdabot | (~lambdabot@haskell/bot/lambdabot) |
| 2022-07-11 06:09:33 +0000 | ghormoon | (~ghormoon@ghorland.net) |
| 2022-07-11 06:09:34 +0000 | exordiri | (~ex@user/exordiri) |
| 2022-07-11 06:09:46 +0000 | haskl | (~haskl@user/haskl) |
| 2022-07-11 06:11:59 +0000 | ircbrowse_tom | (~ircbrowse@2a01:4f8:1c1c:9319::1) (ZNC 1.7.5+deb4 - https://znc.in) |
| 2022-07-11 06:13:35 +0000 | ircbrowse_tom | (~ircbrowse@2a01:4f8:1c1c:9319::1) |
| 2022-07-11 06:13:35 +0000 | Server | +cnt |
| 2022-07-11 06:13:45 +0000 | bsima | (~bsima@143.198.118.179) |
| 2022-07-11 06:13:45 +0000 | Solid | (~slot@xmonad/slotThe) |
| 2022-07-11 06:14:50 +0000 | RMSBach | (~guygastin@137.184.131.156) |
| 2022-07-11 06:58:46 +0000 | cfricke | (~cfricke@user/cfricke) |
| 2022-07-11 07:01:10 +0000 | alternateved | (~alternate@185.244.214.230) |
| 2022-07-11 07:22:59 +0000 | benin0 | (~benin@183.82.29.162) |
| 2022-07-11 08:58:32 +0000 | alternateved | (~alternate@185.244.214.230) (Remote host closed the connection) |
| 2022-07-11 09:16:37 +0000 | pond | (~pond@2001:8003:363d:3b00:ba74:5157:553:b9ea) |
| 2022-07-11 09:19:40 +0000 | pond | (~pond@2001:8003:363d:3b00:ba74:5157:553:b9ea) (Client Quit) |
| 2022-07-11 10:32:23 +0000 | spaceseller | (~spacesell@31.147.205.13) |
| 2022-07-11 10:45:38 +0000 | spaceseller | (~spacesell@31.147.205.13) (Quit: Leaving) |
| 2022-07-11 11:32:39 +0000 | steve__ | (~steve@ool-182c2b80.dyn.optonline.net) |
| 2022-07-11 11:40:37 +0000 | pok_ | (~pok@41.157.227.24) |
| 2022-07-11 11:42:24 +0000 | <pok_> | hey all, for some reason my xmobar won't start up. fresh install using stack of xmonad-0.17, contrib-0.17 and xmobar-0.44. anybody know where i can see the logs for why its not working? |
| 2022-07-11 11:44:55 +0000 | <geekosaur[m]> | Typically they go to the session log which is usually something like .xsession-errors |
| 2022-07-11 11:48:11 +0000 | <pok_> | thanks, it doesn't looks like i have an .xsession-errors file at the moment. presume thats because i am using sddm. will see if i can track it down. |
| 2022-07-11 11:49:04 +0000 | <geekosaur[m]> | .local/sddm/xorg-session.log iirc |
| 2022-07-11 11:49:34 +0000 | <pok_> | geekosaur[m]: excellent - found it. thanks! |
| 2022-07-11 11:52:54 +0000 | <geekosaur> | and usually it'll have something like "expecting 's'" which is its annoying way of saying you're missing a plugin |
| 2022-07-11 12:04:14 +0000 | <pok_> | great - thanks will keep that in mind. my issue was that xmobar wasn't on the path |
| 2022-07-11 12:10:21 +0000 | <geekosaur> | right, that';s another common one. I use a wrapper script which sources my dotfiles, which aren't normally read by X11 startup |
| 2022-07-11 12:18:07 +0000 | defjam | (~eb0t@33bb8326.skybroadband.com) (Read error: Connection reset by peer) |
| 2022-07-11 12:24:02 +0000 | defjam | (~eb0t@33bb4cd7.skybroadband.com) |
| 2022-07-11 12:32:49 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) |
| 2022-07-11 12:40:15 +0000 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
| 2022-07-11 12:42:13 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) (Quit: WeeChat 3.5) |
| 2022-07-11 13:00:50 +0000 | pok_ | (~pok@41.157.227.24) (Ping timeout: 240 seconds) |
| 2022-07-11 13:31:10 +0000 | pok_ | (~pok@41.157.227.24) |
| 2022-07-11 13:52:28 +0000 | mrbeastwick | (~mrbeastwi@pool-108-35-212-7.nwrknj.fios.verizon.net) |
| 2022-07-11 13:53:06 +0000 | <mrbeastwick> | Does the TagWindows library allow one to display tagged windows on multiple workspaces? https://xmonad.github.io/xmonad-docs/xmonad-contrib-0.17.0.9/XMonad-Actions-TagWindows.html |
| 2022-07-11 13:55:06 +0000 | <geekosaur> | withTaggedP "tagname" copyToAll -- or see copy and friends. https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Actions-CopyWindow.html |
| 2022-07-11 13:55:23 +0000 | <mrbeastwick> | thanks :) |
| 2022-07-11 13:55:46 +0000 | <geekosaur> | anything that works with a WindowSet for the …P variants, any X action for the regular ones |
| 2022-07-11 14:05:45 +0000 | pok_ | (~pok@41.157.227.24) (Ping timeout: 272 seconds) |
| 2022-07-11 15:20:25 +0000 | <valarMorghulis[m> | How to set a keyboarding to move focus to a window in next group? |
| 2022-07-11 15:20:26 +0000 | <valarMorghulis[m> | That is `window W.focusDown` for groups |
| 2022-07-11 15:24:50 +0000 | <valarMorghulis[m> | s/keyboarding/keybinding/ |
| 2022-07-11 15:27:46 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) |
| 2022-07-11 15:36:52 +0000 | <geekosaur> | uh, which groups? we have several different notions of "group" |
| 2022-07-11 15:41:41 +0000 | mrbeastwick | (~mrbeastwi@pool-108-35-212-7.nwrknj.fios.verizon.net) (Quit: Client closed) |
| 2022-07-11 15:44:52 +0000 | <valarMorghulis[m> | <geekosaur> "uh, which groups? we have..." <- Group as in when we group together a bunch of windows as sublayout |
| 2022-07-11 15:46:19 +0000 | valarMorghulis[m | uploaded an image: (106KiB) < https://libera.ems.host/_matrix/media/r0/download/matrix.org/qMMmgftTAJyznOVGaslZVYIK/2022-07-07_1… > |
| 2022-07-11 15:46:42 +0000 | <valarMorghulis[m> | Like this image |
| 2022-07-11 15:48:47 +0000 | <valarMorghulis[m> | Jump btw window in left and the one window in right, not all 3 windows just 2 of em each from one group |
| 2022-07-11 15:50:16 +0000 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 3.5) |
| 2022-07-11 15:51:18 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) (Ping timeout: 260 seconds) |
| 2022-07-11 16:04:20 +0000 | <geekosaur[m]> | That actually makes it worse because that could be ComboP instead of Layout.Group or similar |
| 2022-07-11 16:04:33 +0000 | <geekosaur[m]> | Sorry had a phone call |
| 2022-07-11 16:04:39 +0000 | pok_ | (~pok@41.157.227.24) |
| 2022-07-11 16:09:18 +0000 | <geekosaur> | can you show your config so I can see which setup you're using? as I said, there are a number of ways to group windows |
| 2022-07-11 16:09:45 +0000 | <geekosaur> | Combo, ComboP, LayoutCombinators, Layout.Groups, others |
| 2022-07-11 16:10:31 +0000 | pok_ | (~pok@41.157.227.24) (Ping timeout: 272 seconds) |
| 2022-07-11 16:10:34 +0000 | <geekosaur> | there's another one that presumably isn't what your're doing because a group is defined by predicate and you can't e.g. change className of a window |
| 2022-07-11 16:11:52 +0000 | <geekosaur> | actually I suppose that means not ComboP either since that's also by predicate, but it could still be Combo |
| 2022-07-11 16:12:53 +0000 | sagax | (~sagax_nb@user/sagax) (Remote host closed the connection) |
| 2022-07-11 16:14:47 +0000 | <geekosaur> | if it is Layout.Groups then you probably want https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Layout-Groups-Helpers.html#v… |
| 2022-07-11 16:14:59 +0000 | <geekosaur> | but that won't work if it's Combo |
| 2022-07-11 16:15:22 +0000 | lazycat | (~lazycat@user/lazycat) (Quit: ZNC - https://znc.in) |
| 2022-07-11 16:16:21 +0000 | lazycat | (~lazycat@user/lazycat) |
| 2022-07-11 16:21:17 +0000 | steve__ | (~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 272 seconds) |
| 2022-07-11 16:22:13 +0000 | benin0 | (~benin@183.82.29.162) (Quit: The Lounge - https://thelounge.chat) |
| 2022-07-11 16:22:49 +0000 | Jade1 | (~Jade1@ip-178-201-128-039.um46.pools.vodafone-ip.de) |
| 2022-07-11 16:29:49 +0000 | <valarMorghulis[m> | <geekosaur> "can you show your config so I..." <- I'm setting my layout like this... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/4eaacaa1cf57466f3ef98c3401a18663e695…) |
| 2022-07-11 16:30:38 +0000 | <geekosaur> | subLayout, hm. |
| 2022-07-11 16:31:58 +0000 | <geekosaur> | pushWindow <direction>, looks like |
| 2022-07-11 16:32:00 +0000 | <valarMorghulis[m> | Just it didn't work |
| 2022-07-11 16:32:01 +0000 | <valarMorghulis[m> | <geekosaur> "if it is Layout.Groups then..." <- I tried to use focusGroupDown |
| 2022-07-11 16:32:15 +0000 | <geekosaur> | won;'t work with sublayouts, only with X.L.Groups |
| 2022-07-11 16:32:26 +0000 | <geekosaur> | this is why I asked which kind of groups you were using |
| 2022-07-11 16:32:36 +0000 | <geekosaur> | there's a *bunch* of different ways to group windows |
| 2022-07-11 16:32:50 +0000 | <geekosaur> | you want pushWindow here |
| 2022-07-11 16:33:13 +0000 | <valarMorghulis[m> | geekosaur: Oo I see |
| 2022-07-11 16:33:48 +0000 | <valarMorghulis[m> | Can you show an example config or some documentation, I'm kinda new to this |
| 2022-07-11 16:36:06 +0000 | <geekosaur> | you would bind a key to `sendMessage (pushWindow D)` or similar (adjust direction according to what you're doing) |
| 2022-07-11 16:36:40 +0000 | <geekosaur> | the same way you have keys bound to `sendMessage (pullGroup D)` and such |
| 2022-07-11 16:37:00 +0000 | <valarMorghulis[m> | Okay I'll try that out |
| 2022-07-11 16:42:48 +0000 | Jade1 | (~Jade1@ip-178-201-128-039.um46.pools.vodafone-ip.de) (Quit: Client closed) |
| 2022-07-11 16:45:26 +0000 | <valarMorghulis[m> | <geekosaur> "you would bind a key to `..." <- When I check the official documentation both pull group and push group are having the same definition |
| 2022-07-11 16:45:27 +0000 | <valarMorghulis[m> | What's the difference between both? |
| 2022-07-11 16:45:43 +0000 | valarMorghulis[m | sent a code block: https://libera.ems.host/_matrix/media/r0/download/libera.chat/16fbf6d894f5e99822cd6f74c540bc7eba4c… |
| 2022-07-11 16:46:27 +0000 | <geekosaur> | looks to me like they have `c` and `o` swapped? |
| 2022-07-11 16:47:44 +0000 | <geekosaur> | pushWindow, not pushGroup? |
| 2022-07-11 16:49:30 +0000 | <valarMorghulis[m> | geekosaur: I was talking about the description, not the function definition |
| 2022-07-11 16:50:47 +0000 | <geekosaur> | the description says the difference between the two, it's just duplicated out of laziness (programmer laziness, not Haskell's) |
| 2022-07-11 16:51:04 +0000 | <geekosaur> | "inheriting the position of the current window (pull) or the other window (push)" |
| 2022-07-11 16:51:34 +0000 | sagax | (~sagax_nb@user/sagax) |
| 2022-07-11 16:52:09 +0000 | <valarMorghulis[m> | geekosaur: Ok I see |
| 2022-07-11 16:54:03 +0000 | valarMorghulis[m | sent a code block: https://libera.ems.host/_matrix/media/r0/download/libera.chat/cd282d0f360939c5fddb7583fe0177acc01f… |
| 2022-07-11 17:06:43 +0000 | <geekosaur> | I think this is the third time… to move a window between them you use pushWindow instead of pushGroup |
| 2022-07-11 17:18:46 +0000 | <valarMorghulis[m> | <geekosaur> "I think this is the third time..." <- Ok after the third time I think you understood my question wrong, I want to jump btw groups just like Alt-tab jumps between Windows I need to jump between the first window of each group, push and pull group combains Windows together right? Not shift focus and thats what I want |
| 2022-07-11 17:19:16 +0000 | <geekosaur> | okaym I misunderstood, sorry |
| 2022-07-11 17:21:54 +0000 | <geekosaur> | I think you just use WindowNavigation for that: sendMessage (Go D) |
| 2022-07-11 17:25:46 +0000 | <valarMorghulis[m> | geekosaur: ` , ("M-C-<Tab>", sendMessage (Go D))` this doesn't seem to work |
| 2022-07-11 17:26:05 +0000 | <geekosaur> | I don't think there's a way to go directly to the next group, you have to go through all the windows in that direction |
| 2022-07-11 17:26:29 +0000 | <valarMorghulis[m> | Thanks |
| 2022-07-11 17:26:30 +0000 | <valarMorghulis[m> | I get it |
| 2022-07-11 17:27:16 +0000 | <geekosaur> | I'm looking at that layout stack. It's a bit weird |
| 2022-07-11 17:27:33 +0000 | <geekosaur> | you have both `noBorders` and `smartBorders` next to each other |
| 2022-07-11 17:28:29 +0000 | <geekosaur> | you have `avoidStruts` inside several other layouts, which will cause bars to malfunction because you can't avoid a strut when you're not on the outside of the stack |
| 2022-07-11 17:29:13 +0000 | <geekosaur> | I'm also wondering how `addTabs` fits in with that whole thing. it's outside of the `subLayout` but it may still cause weirdness |
| 2022-07-11 17:29:23 +0000 | <valarMorghulis[m> | geekosaur: I've my boarder set to 0 since I'm using top bar, thats why I didnt bother changing it ig I'll change it now |
| 2022-07-11 17:29:54 +0000 | <geekosaur> | if you set border to 0 then I don't think either of those modifiers will help you |
| 2022-07-11 17:31:20 +0000 | <geekosaur> | don't think you can move between tabs via keyboard either |
| 2022-07-11 17:35:14 +0000 | <valarMorghulis[m> | https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Layout-SubLayouts.html in `sublayout` example it's show like that, ig that's why I tried to use it |
| 2022-07-11 17:35:56 +0000 | <valarMorghulis[m> | geekosaur: Well I can move around with tabs currently |
| 2022-07-11 17:36:16 +0000 | <geekosaur> | right, but subTabbed exists for a specific reason because tabs combine weirdly with groups |
| 2022-07-11 17:36:43 +0000 | <geekosaur> | but I think that's about tabs inside the groups, whereas your `addTabs` is outside |
| 2022-07-11 17:37:32 +0000 | <valarMorghulis[m> | geekosaur: SubTabbed has a weird glitch thats why I didnt use it |
| 2022-07-11 17:37:34 +0000 | <valarMorghulis[m> | https://github.com/xmonad/xmonad-contrib/issues/343 |
| 2022-07-11 17:38:00 +0000 | <valarMorghulis[m> | geekosaur: Ooh |
| 2022-07-11 17:38:34 +0000 | <valarMorghulis[m> | Imma change the boarders anyways, I knew something was wrong there but since I didn't use it I was too lazy to remove em |
| 2022-07-11 17:39:07 +0000 | <geekosaur> | right, but that glitch will happen regardless of how you do it, it's a flaw in message handling |
| 2022-07-11 17:39:20 +0000 | <geekosaur> | whoich we're not sure how to fix without breaking other things |
| 2022-07-11 17:39:33 +0000 | <geekosaur> | I think that's the second or third ticket about the same core issue |
| 2022-07-11 17:39:46 +0000 | <valarMorghulis[m> | But using it with add tabs doesn't cause that glitch |
| 2022-07-11 17:40:10 +0000 | <geekosaur> | right, because those are outside so it always receives the messages |
| 2022-07-11 17:40:23 +0000 | <geekosaur> | it's stuff inside addTabs that won't reliably receive Hide messages |
| 2022-07-11 17:40:54 +0000 | <valarMorghulis[m> | geekosaur: Ooh I see |
| 2022-07-11 17:41:41 +0000 | <valarMorghulis[m> | Btw (this)[https://github.com/lladeebll/dotFiles/tree/master/dotfiles/.config/xmonad] is my xmonad config, if anyone in here got extra time, please go through this, I'm just a beginner there might be a lotta problems with this |
| 2022-07-11 17:41:45 +0000 | <geekosaur> | or vice versa, subLayout won't tell all its sublayouts to hide so tabs will stick around untimely |
| 2022-07-11 17:42:33 +0000 | <geekosaur> | which is what I meant about addTabs being (correctly) outside of subLayout instead of inside it where it breaks badly |
| 2022-07-11 17:44:13 +0000 | <valarMorghulis[m> | <geekosaur> "you have `avoidStruts` inside..." <- So `avoidStruts` need to be out side everything? |
| 2022-07-11 17:45:36 +0000 | <geekosaur> | yes |
| 2022-07-11 17:45:48 +0000 | <geekosaur> | since the struts are always on the very edge of the screen |
| 2022-07-11 17:46:28 +0000 | <geekosaur> | `avoidStruts` will happily try to reserve space somewhere else, but it won't match where the strut-owning program is drawing in that case |
| 2022-07-11 17:47:05 +0000 | <valarMorghulis[m> | Ok I see, I've removed `noBoarders` `smartBoards` and added `avoidStruts` outside all layouts |
| 2022-07-11 17:47:30 +0000 | <valarMorghulis[m> | Ig these should solve all the problems with my layout |
| 2022-07-11 17:47:48 +0000 | <geekosaur> | hopefully |
| 2022-07-11 17:48:20 +0000 | <valarMorghulis[m> | Cool, thanks |
| 2022-07-11 18:34:23 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) |
| 2022-07-11 18:49:48 +0000 | dschrempf | (~dominik@mobiledyn-62-240-134-33.mrsn.at) (Quit: WeeChat 3.5) |
| 2022-07-11 19:17:56 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:e44b:517c:8b93:d71d) |
| 2022-07-11 19:24:48 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:e44b:517c:8b93:d71d) (Ping timeout: 276 seconds) |
| 2022-07-11 19:27:33 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:68e4:4ca8:a63:19fd) |
| 2022-07-11 19:27:56 +0000 | lambdadelta-[m] | (~lambdadel@2001:470:69fc:105::2:44c7) |
| 2022-07-11 19:49:59 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:68e4:4ca8:a63:19fd) (Remote host closed the connection) |
| 2022-07-11 19:50:23 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:4e3c:ad56:fffa:225d) |
| 2022-07-11 20:22:39 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:4e3c:ad56:fffa:225d) (Ping timeout: 276 seconds) |
| 2022-07-11 20:53:37 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:b231:296e:3336:4e6e) |
| 2022-07-11 21:09:27 +0000 | chomwitt | (~chomwitt@2a02:587:dc0d:4a00:b231:296e:3336:4e6e) (Ping timeout: 276 seconds) |
| 2022-07-11 21:09:37 +0000 | wusticality | (~wusticali@c-67-161-204-49.hsd1.co.comcast.net) |
| 2022-07-11 21:15:58 +0000 | <wusticality> | Hey folks, I've been trying to find a reliable way to swap the Windows and Alt keys in XMonad (in gnome, I use tweaks select the "Left Win as Meta key" option). I've tried using xmodmap (see here: https://gist.github.com/wusticality/c0fc6b8c92bbadf52ad6e833be63c396) to get around this, and that works, temporarily, but within a minute or two, |
| 2022-07-11 21:15:58 +0000 | <wusticality> | certain applications wipe my xmodmap settings, breaking my keybindings all over again. I tried to resolve this by running it in a loop forever on startup (aka, something like this: [ -f "$HOME/.Xmodmap" ] && sleep 4 && while true; do xmodmap "$HOME/.Xmodmap"; sleep 1; done &), but that causes other problems. Is there some way to swap the Windows |
| 2022-07-11 21:15:59 +0000 | <wusticality> | and Alt keys when using XMonad that's reliable? Thanks very much in advance, this has me totally blocked. |
| 2022-07-11 21:21:30 +0000 | <geekosaur> | what are these "certain applications"? |
| 2022-07-11 21:22:49 +0000 | <geekosaur> | also technically xmodmap is obsolete and Xkb should be used. |
| 2022-07-11 21:24:01 +0000 | <geekosaur> | "Alt is swapped with Super/Win" is one of the provided Xkb options, but configuring Xkb manually is somewhat annoying |
| 2022-07-11 21:24:36 +0000 | <wusticality> | oh, xmodmap is deprecated? |
| 2022-07-11 21:25:16 +0000 | <wusticality> | honestly, I just need something that works |
| 2022-07-11 21:25:23 +0000 | <wusticality> | will Xkb work if you run wayland? |
| 2022-07-11 21:25:50 +0000 | <geekosaur> | yes, wayland devs got so confused by keyboard configuration that they just imported Xkb as is |
| 2022-07-11 21:26:41 +0000 | <wusticality> | hah |
| 2022-07-11 21:26:58 +0000 | <wusticality> | I'll look into it right away - I assume you can have some text-based config that's loaded on startup |
| 2022-07-11 21:27:34 +0000 | <geekosaur> | probably you want the setxkbmap command, rather than trying to build a new config for xkbcomp |
| 2022-07-11 21:30:12 +0000 | <wusticality> | ok, will take a look :) |
| 2022-07-11 21:31:41 +0000 | <liskin> | wusticality: take a look at man xkeyboard-config |
| 2022-07-11 21:31:49 +0000 | <geekosaur> | setxkbmap -option altwin:swap_alt_win, looks like |
| 2022-07-11 21:32:29 +0000 | <geekosaur> | which shouldleave the rest of the keyboard alone instead of selecting a different layout |
| 2022-07-11 21:32:29 +0000 | <liskin> | Yeah, and you can put that in /etc/default/keyboard or wherever your distro puts it |
| 2022-07-11 21:34:10 +0000 | <wusticality> | I wonder if that option swaps both alt / win keys |
| 2022-07-11 21:34:15 +0000 | <wusticality> | I need them swapped on both sides |
| 2022-07-11 21:38:27 +0000 | <geekosaur> | I just checked with mate's keyboard settings and it looks like it's swapped on both sides |
| 2022-07-11 21:38:44 +0000 | <geekosaur> | (can't be 100% certain as my right alt is actually a compose key) |
| 2022-07-11 21:39:14 +0000 | <wusticality> | is it possible to rebind individual keys with that program ala xmodmap? |
| 2022-07-11 21:39:29 +0000 | <wusticality> | gotta say though, xmodmap constantly forgets my settings, it's rough |
| 2022-07-11 21:39:34 +0000 | <geekosaur> | for individual keys you would need to resort to xkbcomp |
| 2022-07-11 21:39:56 +0000 | <geekosaur> | setxkbmap can only use certain prepackaged configurations |
| 2022-07-11 21:40:45 +0000 | <geekosaur> | that said, using xkbcomp you can remap every key on the keyboard including some xmodmap can't touch (like which key, if any, can immediately shut down the server) |
| 2022-07-11 21:41:07 +0000 | <wusticality> | is this something you execute in your .profile or something? aka, is this setting persistent for a session? |
| 2022-07-11 21:41:13 +0000 | <geekosaur> | (default is control-alt-backspace, if you're wondering, but it's disabled by default) |
| 2022-07-11 21:41:58 +0000 | <geekosaur> | you would need to rerun it at the start of every session, but .profile is not typically run by X11 sessions; you'd run it with spawnOnce in your xmonad startupHook |
| 2022-07-11 21:42:17 +0000 | <wusticality> | oh ok |
| 2022-07-11 21:42:31 +0000 | <wusticality> | this is an absolute lifesaver if it works out |
| 2022-07-11 21:45:26 +0000 | <wusticality> | hoping it doesn't lose it's state the way xmodmap does |
| 2022-07-11 21:46:01 +0000 | <geekosaur> | you never did way which app was causing you trouble |
| 2022-07-11 21:46:30 +0000 | <geekosaur> | if it's (say) a kde app that launches the kde setting manager in the background then you may have to use the kde keyboard configuration dialog to change it |
| 2022-07-11 21:47:01 +0000 | Ocelot | (~ocelot@50-78-208-189-static.hfc.comcastbusiness.net) (Remote host closed the connection) |
| 2022-07-11 21:47:38 +0000 | <wusticality> | Honestly, I'm not sure |
| 2022-07-11 21:48:03 +0000 | <wusticality> | I'm using Signal, Slack, Discord, JetBrains apps, Emacs, Alacritty, Chrome, etc. |
| 2022-07-11 21:48:14 +0000 | <wusticality> | without fail though, every few minutes, my xmodmap settings disappear |
| 2022-07-11 21:52:54 +0000 | kaskal- | kaskal |
| 2022-07-11 22:21:44 +0000 | <liskin> | xkbcomp isn't really necessary, you can define your own xkb options and then use them in setxkbmap |
| 2022-07-11 22:22:16 +0000 | <liskin> | although you'll be writing the same language xkbcomp accepts so probably not that much of a difference really :-) |
| 2022-07-11 22:31:59 +0000 | <wusticality> | as long as it's data-driven ya know |
| 2022-07-11 23:09:15 +0000 | <wusticality> | this is working, thanks so much folks <3 |
| 2022-07-11 23:09:21 +0000 | wusticality | (~wusticali@c-67-161-204-49.hsd1.co.comcast.net) (Quit: Client closed) |
| 2022-07-11 23:51:59 +0000 | mvk | (~mvk@2607:fea8:5ce3:8500::909a) |