2023/07/14

2023-07-14 00:56:17 +0000coldpress(~coldpress@72.136.212.35.bc.googleusercontent.com) (Quit: ZNC 1.7.2 - https://znc.in)
2023-07-14 01:05:18 +0000coldpress(~coldpress@72.136.212.35.bc.googleusercontent.com)
2023-07-14 01:05:55 +0000vetu(~vetu@91-156-31-97.elisa-laajakaista.fi) (Write error: Connection reset by peer)
2023-07-14 01:06:03 +0000vetu_(~vetu@91-156-31-97.elisa-laajakaista.fi)
2023-07-14 02:09:32 +0000td_(~td@i5387091F.versanet.de) (Ping timeout: 245 seconds)
2023-07-14 02:11:40 +0000td_(~td@i5387091B.versanet.de)
2023-07-14 05:15:46 +0000lambdabot(~lambdabot@haskell/bot/lambdabot) (Ping timeout: 252 seconds)
2023-07-14 05:18:12 +0000lambdabot(~lambdabot@haskell/bot/lambdabot)
2023-07-14 05:48:38 +0000mncheck(~mncheck@193.224.205.254)
2023-07-14 07:12:51 +0000sagax(~sagax_nb@user/sagax)
2023-07-14 08:12:56 +0000ft(~ft@p3e9bc835.dip0.t-ipconnect.de) (Quit: leaving)
2023-07-14 09:08:26 +0000liskin[m](~liskinmat@2001:470:69fc:105::768) (Remote host closed the connection)
2023-07-14 09:09:43 +0000unclechu(~unclechu@2001:470:69fc:105::354) (Remote host closed the connection)
2023-07-14 09:19:23 +0000derfflinger(~derffling@user/derfflinger)
2023-07-14 09:41:55 +0000Kaladin(~Kaladin@157-131-203-194.fiber.dynamic.sonic.net)
2023-07-14 09:42:39 +0000Kaladin(~Kaladin@157-131-203-194.fiber.dynamic.sonic.net) (Remote host closed the connection)
2023-07-14 12:26:02 +0000derfflinger(~derffling@user/derfflinger) (Read error: Connection reset by peer)
2023-07-14 13:18:17 +0000sagax(~sagax_nb@user/sagax) (Ping timeout: 245 seconds)
2023-07-14 13:19:06 +0000ft(~ft@p3e9bc835.dip0.t-ipconnect.de)
2023-07-14 13:55:08 +0000mncheck(~mncheck@193.224.205.254) (Ping timeout: 250 seconds)
2023-07-14 14:13:22 +0000beect[m](~beectmatr@2001:470:69fc:105::3:82b6)
2023-07-14 19:29:54 +0000Maeda(~Maeda@91-161-10-149.subs.proxad.net)
2023-07-14 19:53:30 +0000ft(~ft@p3e9bc835.dip0.t-ipconnect.de) (Ping timeout: 250 seconds)
2023-07-14 19:55:13 +0000ft(~ft@p4fc2a494.dip0.t-ipconnect.de)
2023-07-14 20:07:58 +0000obimod(~weechat@user/obimod) (Ping timeout: 240 seconds)
2023-07-14 20:17:46 +0000Maeda(~Maeda@91-161-10-149.subs.proxad.net) (Quit: yup)
2023-07-14 20:32:06 +0000ft(~ft@p4fc2a494.dip0.t-ipconnect.de) (Ping timeout: 272 seconds)
2023-07-14 20:33:28 +0000ft(~ft@p508db7ce.dip0.t-ipconnect.de)
2023-07-14 20:38:49 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr)
2023-07-14 20:40:00 +0000 <Hmmf> Hello guys. Do you have an idea how i could map modMask to Super_L (excluding Super_r)?
2023-07-14 20:40:14 +0000liskin[m](~liskinmat@2001:470:69fc:105::768)
2023-07-14 20:40:28 +0000unclechu(~unclechu@2001:470:69fc:105::354)
2023-07-14 20:40:50 +0000 <Hmmf> I mainly want to find something that does not collide with emacs (caps lock isn't really an option).
2023-07-14 20:42:16 +0000 <Hmmf>  I mapped my menu key to Super_R but it seemed to be grabbed by mod4Mask as well.
2023-07-14 20:45:04 +0000 <geekosaur> xmodmap -e 'remove Mod4 = Super_R'
2023-07-14 20:45:24 +0000 <Hmmf> aaaaw that makes a lot of sense.
2023-07-14 20:45:54 +0000 <Hmmf> But then you just put Super_L in the xmonad.hs?
2023-07-14 20:46:05 +0000 <Hmmf> instead of mod4Mask
2023-07-14 20:46:31 +0000 <geekosaur> you still use mod4Mask, it's just that X11 won't consider Super_R to set mod4 any more
2023-07-14 20:47:07 +0000 <Hmmf> aight that sounds good. let's hope emacs does not use mod4.
2023-07-14 20:47:19 +0000 <Hmmf> I'll restart X and report :D
2023-07-14 20:47:48 +0000 <geekosaur> you'll need to arrange for that to be redone on reboot, either you can work out how to do it with Xkb or you can try to usen~/.Xmodmap (no, there's no XDG version, you're supposed to use XKB instead these days)
2023-07-14 20:47:56 +0000 <geekosaur> don;t need to restart X for that
2023-07-14 20:48:02 +0000 <geekosaur> it affects the current session
2023-07-14 20:48:39 +0000 <Hmmf> ha yes true. I use ~/.xmodmap.
2023-07-14 20:49:04 +0000 <geekosaur> so put the `remove` command in there
2023-07-14 20:49:33 +0000 <geekosaur> and run the xmodmap command to have it take effect immediately; don't even need to restart xmonad
2023-07-14 20:52:41 +0000 <Hmmf> hmmm weird. xmodmap -pm shows me the following line
2023-07-14 20:52:52 +0000 <Hmmf> mod4 Super_L (0x85), Super_L (0xce), Hyper_L (0xcf)
2023-07-14 20:53:11 +0000 <Hmmf> yet the Super_R is still used by xmonad
2023-07-14 20:53:21 +0000 <Hmmf> I wonder why there are two Super_L
2023-07-14 20:53:27 +0000 <Hmmf> investigating…
2023-07-14 20:55:50 +0000 <Hmmf> hmmm I don't even know what the hexadecimal corresponds to. I can't really find anything that relates to it in xev.
2023-07-14 20:59:11 +0000 <Hmmf> meh, I'm silly, xev displays it as decimal. It actually makes sense.
2023-07-14 21:01:23 +0000 <geekosaur> xmonad shouldn't be reacting to it if you've removed the mod4 mapping to it
2023-07-14 21:01:41 +0000 <Hmmf> yes that's weird…
2023-07-14 21:02:12 +0000 <geekosaur> xmonad tells the X server to look for (<modifier mask>,<keycode>); xmodmap defines what keys map to what modifiers (and what keysyms to what keycodes)
2023-07-14 21:04:28 +0000 <Hmmf> hmmm brb I'll restart X just to be sure
2023-07-14 21:04:34 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr) (Quit: Client closed)
2023-07-14 21:05:22 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr)
2023-07-14 21:07:14 +0000 <Hmmf> Meh. Science is baffled. Let's try something else. How do you guys manage super in emacs? I'm sure quite a few haskellers are also on emacs.
2023-07-14 21:08:50 +0000 <Hmmf> Or any application that uses Super for that matter.
2023-07-14 21:15:38 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr) (Quit: Client closed)
2023-07-14 21:17:34 +0000Hmmf(~Hmmf@lfbn-idf3-1-1114-214.w90-46.abo.wanadoo.fr)
2023-07-14 21:19:12 +0000Hmmf(~Hmmf@lfbn-idf3-1-1114-214.w90-46.abo.wanadoo.fr) (Client Quit)
2023-07-14 21:19:46 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr)
2023-07-14 21:25:14 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr) (Quit: Client closed)
2023-07-14 22:00:11 +0000Hmmf(~Hmmf@2a01cb0802fed200e2c93d9b47cd0675.ipv6.abo.wanadoo.fr)
2023-07-14 22:18:23 +0000horzion(~horzion@ProtonDB/horzion)
2023-07-14 22:37:30 +0000horzion(~horzion@ProtonDB/horzion) (Ping timeout: 272 seconds)
2023-07-14 22:40:53 +0000horzion(~horzion@ProtonDB/horzion)
2023-07-14 22:58:32 +0000horzion(~horzion@ProtonDB/horzion) (Ping timeout: 246 seconds)
2023-07-14 23:02:19 +0000horzion(~horzion@ProtonDB/horzion)