2025/11/21

2025-11-21 00:54:48 +0100haskellbridge(~hackager@96.28.224.214) (Remote host closed the connection)
2025-11-21 00:57:12 +0100haskellbridge(~hackager@96.28.224.214) hackager
2025-11-21 02:47:47 +0100strohpappy(~steven@2600:6c44:2e00:1e5b::1903) (Remote host closed the connection)
2025-11-21 03:13:19 +0100L29Ah(~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer)
2025-11-21 03:26:02 +0100L29Ah(~L29Ah@wikipedia/L29Ah) L29Ah
2025-11-21 03:29:44 +0100down200(~down200@shell.lug.mtu.edu) (Quit: ZNC - https://znc.in)
2025-11-21 05:20:12 +0100werneta(~werneta@71.83.160.242) werneta
2025-11-21 05:37:05 +0100werneta(~werneta@71.83.160.242) (Quit: Lost terminal)
2025-11-21 07:20:25 +0100L29Ah(~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer)
2025-11-21 08:09:04 +0100ft(~ft@p4fc2aaeb.dip0.t-ipconnect.de) (Quit: leaving)
2025-11-21 09:19:04 +0100yecinem_(~yecinem@p200300ee0f20e20086f1079031cbd533.dip0.t-ipconnect.de)
2025-11-21 11:58:10 +0100ximon(~ximon@user/ximon) ximon
2025-11-21 12:03:59 +0100ximon(~ximon@user/ximon) (Ping timeout: 250 seconds)
2025-11-21 12:04:38 +0100ximon(~ximon@user/ximon) ximon
2025-11-21 12:07:54 +0100ximon(~ximon@user/ximon) (Client Quit)
2025-11-21 12:08:27 +0100ximon(~ximon@user/ximon) ximon
2025-11-21 12:13:09 +0100ximon(~ximon@user/ximon) (Client Quit)
2025-11-21 12:20:44 +0100ximon(~ximon@user/ximon) ximon
2025-11-21 12:41:41 +0100ximon(~ximon@user/ximon) (Ping timeout: 250 seconds)
2025-11-21 12:54:41 +0100down200(~down200@shell.lug.mtu.edu) down200
2025-11-21 13:22:20 +0100Solitary(~Solitary@user/solitary) (Quit: All work and no play makes Jack a dull boy.)
2025-11-21 13:25:02 +0100Solitary(~Solitary@user/solitary) Solitary
2025-11-21 14:26:37 +0100ft(~ft@p4fc2aaeb.dip0.t-ipconnect.de) ft
2025-11-21 15:12:02 +0100L29Ah(~L29Ah@wikipedia/L29Ah) L29Ah
2025-11-21 17:29:37 +0100bsjd(~user@125.219-244-81.adsl-dyn.isp.belgacom.be) bsjd
2025-11-21 17:34:49 +0100bsjd(~user@125.219-244-81.adsl-dyn.isp.belgacom.be) (Remote host closed the connection)
2025-11-21 17:36:56 +0100bsjd(~user@125.219-244-81.adsl-dyn.isp.belgacom.be) bsjd
2025-11-21 18:06:46 +0100tccq(~tccq@user/tccq) tccq
2025-11-21 18:08:51 +0100yecinem_(~yecinem@p200300ee0f20e20086f1079031cbd533.dip0.t-ipconnect.de) (Ping timeout: 252 seconds)
2025-11-21 18:09:21 +0100 <tccq> I've been using WindowBringer from contrib, and for me goto window is case insensitive but bring window is case sensitive in demnu. Any idea what is causing that? My dmenu is completely stock and I can't find anything that would cause that in the source of my config or WindowBringer
2025-11-21 18:11:25 +0100ectospasm(~ectospasm@user/ectospasm) (Ping timeout: 264 seconds)
2025-11-21 18:15:44 +0100 <geekosaur> can you link to your config?
2025-11-21 18:16:15 +0100 <geekosaur> (I don't see anything in the module that would produce that behavior without some hairy overrides to the config)
2025-11-21 18:17:58 +0100 <tccq> https://upaste.de/Emv
2025-11-21 18:21:00 +0100 <geekosaur> hm, not seeing anything
2025-11-21 18:21:22 +0100 <tccq> right?
2025-11-21 18:21:40 +0100 <tccq> it's not the biggest issue, but it's kinda annoying and totally a mystery for me
2025-11-21 18:22:08 +0100 <geekosaur> WindowBringer's default behavior is to tell dmenu to be case insensitive, you're using the defaults for everything, and I don't see anything in either X.A.WindowBringer or X.U.Dmenu that would change it
2025-11-21 18:27:18 +0100ectospasm(~ectospasm@user/ectospasm) ectospasm
2025-11-21 18:27:44 +0100 <tccq> so monitoring with watch 'bash -c "ps -o args $(pgrep dmenu)"' I get 'dmenu' for demnu_launcher and bringWindow, but 'demnu -i' for gotoWindow
2025-11-21 18:29:51 +0100 <tccq> so this is an issue of how dmenu is getting invoked, definitively
2025-11-21 18:49:32 +0100 <tccq> no idea, but redefining the default windowBringerConfig and using that with the version that takes a config struct works
2025-11-21 19:01:29 +0100 <geekosaur> right, I just looked over the code again and bringMenu is defined differently than gotoMenu, and in a way that loses the -i
2025-11-21 19:01:51 +0100 <geekosaur> `bringMenuConfig def` should work
2025-11-21 19:03:00 +0100 <geekosaur> (`gotoMenu` is `gotoMenuConfig def`, `bringWindow` is `bringMenuArgs def`; `bringMenuArgs` requires you to specify `-i` explicitly since it replaces the original args)
2025-11-21 19:06:47 +0100 <geekosaur> https://github.com/xmonad/xmonad-contrib/issues/956
2025-11-21 19:09:56 +0100 <geekosaur> er, bringMenu not bringWindow
2025-11-21 19:14:48 +0100 <geekosaur> also, your config duplicates a lot of xmonad defaults for no good reason; it looks like it's derived from someone's "default xmonad.hs" which duplicates everything in whatever version of xmonad they pulled it from
2025-11-21 19:15:26 +0100 <tccq> yes it's cloned initially from some distribution's suggested defaults
2025-11-21 19:15:38 +0100 <geekosaur> the right way to do things is to override defaults, since sometimes the defaults change (like when dmenu changed its usage back around xmonad 0.9) and people's configs broke
2025-11-21 19:16:32 +0100 <tccq> my config has been in need of some spring cleaning for a while now
2025-11-21 19:19:20 +0100rieper(~riepernet@2a03:4000:6:f1d6:6885:6fff:fe5a:8933) (*.net *.split)
2025-11-21 19:24:42 +0100rieper(~riepernet@2a03:4000:6:f1d6:6885:6fff:fe5a:8933) rieper
2025-11-21 20:01:36 +0100tccq(~tccq@user/tccq) (Ping timeout: 252 seconds)
2025-11-21 22:02:05 +0100terrorjack(~terrorjac@2a01:4f8:c17:9d11::) (Quit: The Lounge - https://thelounge.chat)
2025-11-21 22:05:56 +0100terrorjack(~terrorjac@2a01:4f8:c17:9d11::) terrorjack
2025-11-21 22:17:32 +0100L29Ah(~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer)
2025-11-21 22:47:02 +0100L29Ah(~L29Ah@wikipedia/L29Ah) L29Ah