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