Logs: liberachat/#xmonad
| 2024-08-30 18:27:33 | × | Digit quits (~user@user/digit) (Ping timeout: 248 seconds) |
| 2024-08-30 18:44:49 | → | Digit joins (~user@user/digit) |
| 2024-08-30 19:19:18 | ← | L29Ah parts (~L29Ah@wikipedia/L29Ah) () |
| 2024-08-30 19:26:45 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Ping timeout: 265 seconds) |
| 2024-08-30 19:34:53 | → | ChubaDuba joins (~ChubaDuba@46.147.103.184) |
| 2024-08-30 19:45:30 | × | catman quits (~catman@user/catman) (Quit: WeeChat 4.3.0-dev) |
| 2024-08-30 19:49:53 | → | rascasse joins (~rascasse@user/diep) |
| 2024-08-30 19:54:19 | × | rascasse quits (~rascasse@user/diep) (Client Quit) |
| 2024-08-30 19:54:34 | → | rascasse joins (~rascasse@user/diep) |
| 2024-08-30 19:54:37 | × | rascasse quits (~rascasse@user/diep) (Client Quit) |
| 2024-08-30 19:54:51 | → | rascasse joins (~rascasse@user/diep) |
| 2024-08-30 20:21:29 | × | rascasse quits (~rascasse@user/diep) (Quit: rascasse) |
| 2024-08-30 20:53:05 | × | ChubaDuba quits (~ChubaDuba@46.147.103.184) (Quit: Leaving) |
| 2024-08-30 20:57:37 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 2024-08-30 23:19:08 | <T_X> | argh, about once or twice a year I'm trying an "xmonad --recompile" and everytime I seem to need to adjust the code to fix compile issues |
| 2024-08-30 23:19:11 | <T_X> | :D |
| 2024-08-30 23:22:20 | <T_X> | I'm using Debian Sid/unstable here. maybe the "unstable" in this case means that I need to be on my toes regarding changed APIs here. |
| 2024-08-30 23:26:07 | <geekosaur> | maybe they updated to 0.18.1 already? https://github.com/xmonad/xmonad-contrib/blob/master/CHANGES.md#0181-august-20-2024 |
| 2024-08-31 01:25:20 | <T_X> | ah, wait, the fix was actually simpler... didn't have libghc-xmonad-* installed... |
| 2024-08-31 01:26:28 | <T_X> | .oO(I think apt automatically removed them due to some temporary dependency issues at some point. of course it wouldn't have been my fault :P) |
| 2024-08-31 01:40:19 | <T_X> | also wanted to try the fixSteamFlicker, but looks like that's only part of 0.18.1 so far? so not in Debian yet, with its 0.17.2? |
| 2024-08-31 01:48:11 | <geekosaur> | yes |
| 2024-08-31 02:59:33 | × | td_ quits (~td@i5387090B.versanet.de) (Ping timeout: 248 seconds) |
| 2024-08-31 03:01:35 | → | td_ joins (~td@i53870912.versanet.de) |
| 2024-08-31 05:49:09 | → | rascasse joins (~rascasse@user/diep) |
| 2024-08-31 06:55:55 | × | rascasse quits (~rascasse@user/diep) (Remote host closed the connection) |
| 2024-08-31 08:21:42 | → | ChubaDuba joins (~ChubaDuba@79.136.180.183) |
| 2024-08-31 08:38:05 | × | _qw quits (~eqw@user/eqw) (Ping timeout: 255 seconds) |
| 2024-08-31 09:02:11 | × | ChubaDuba quits (~ChubaDuba@79.136.180.183) (Quit: Leaving) |
| 2024-08-31 10:40:43 | <liskin> | You can probably just copypaste the fixSteamFlicker code into xmonad.hs... |
| 2024-08-31 11:54:23 | <T_X> | liskin: also thought of that initially, but then also saw these changes: https://github.com/xmonad/xmonad-contrib/pull/886/files#diff-cf9308345d1d5de4c1e403c5874d91d723ffc5d4ff79b21c4dbfe6390a592598 |
| 2024-08-31 11:56:21 | <geekosaur> | you can just drop the new EwmhDesktops in lib/XMonad/Hooks/EwmhDesktops.hs if you're not also using XMonad.Config.Desktop (in which case just drop a copy of that in lib/XMonad/Config/Desktop.hs as well) |
| 2024-08-31 11:56:43 | <geekosaur> | I do that a lot when testing changes |
| 2024-08-31 11:57:14 | <geekosaur> | (well, these days I use branches on my checkout of xmonad-contrib mostly, tbh) |
| 2024-08-31 11:57:48 | <T_X> | btw. is it painless / easy to compile an xmonad 0.18.1 from Git on a Debian Sid? is there something like a "-L" / "-I" / LD_LIBRARY_PATH that I'm used to from C with Haskell, too? |
| 2024-08-31 11:58:27 | <T_X> | and I probably shouldn't mix xmonad 0.17.2 from Debian with a git checkout of libghc-xmonad-contrib-dev? |
| 2024-08-31 11:59:56 | <geekosaur> | right, you would want to switch to using the git instructions https://xmonad.org/INSTALL.html#download-xmonad-sources |
| 2024-08-31 12:01:54 | <geekosaur> | or, since the stuff you want is released to Hackage, https://xmonad.org/INSTALL.html#build-using-cabal-installat "Install Everything" |
| 2024-08-31 12:02:07 | <geekosaur> | and skip the git stuff |
| 2024-08-31 12:02:28 | <geekosaur> | argh, typo |
| 2024-08-31 12:02:32 | <geekosaur> | https://xmonad.org/INSTALL.html#build-using-cabal-install |
| 2024-08-31 13:12:01 | <T_X> | is there anything else than adding ~/.cabal/bin/xmonad to my PATH? currently still getting this error: https://paste.debian.net/1328052/ |
| 2024-08-31 14:19:49 | → | _qw joins (~eqw@user/eqw) |
| 2024-08-31 21:34:08 | → | catman joins (~catman@user/catman) |
| 2024-08-31 21:40:29 | → | ash3en joins (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
| 2024-08-31 21:55:46 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en) |
| 2024-09-01 02:42:15 | × | terrorjack4 quits (~terrorjac@2a01:4f8:c17:dc9f::) (Quit: The Lounge - https://thelounge.chat) |
| 2024-09-01 02:44:50 | → | terrorjack4 joins (~terrorjac@2a01:4f8:c17:dc9f::) |
| 2024-09-01 02:58:12 | × | td_ quits (~td@i53870912.versanet.de) (Ping timeout: 246 seconds) |
| 2024-09-01 03:00:17 | → | td_ joins (~td@i5387091E.versanet.de) |
| 2024-09-01 09:11:47 | → | ash3en joins (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
| 2024-09-01 09:22:51 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en) |
| 2024-09-01 09:23:08 | → | ash3en joins (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
| 2024-09-01 10:09:30 | <geekosaur> | Sorry, missed that message. That sounds like it's still using the old xmonad-contrib; you may wish to (a) remove aany OS packages (b) remove ~/.xmonad/.ghc.environment.* and rerun the `cabal install --lib …` command |
| 2024-09-01 10:26:22 | × | Natch quits (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (Remote host closed the connection) |
| 2024-09-01 10:39:49 | → | Natch joins (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) |
| 2024-09-01 10:52:55 | × | catman quits (~catman@user/catman) (Quit: WeeChat 4.3.0-dev) |
| 2024-09-01 12:58:37 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en) |
| 2024-09-01 12:58:54 | → | ash3en joins (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
| 2024-09-01 13:02:36 | → | mvk joins (~mvk@2607:fea8:5c96:5800::48f3) |
| 2024-09-01 13:03:01 | × | mvk quits (~mvk@2607:fea8:5c96:5800::48f3) (Client Quit) |
| 2024-09-01 13:07:32 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Ping timeout: 244 seconds) |
| 2024-09-01 13:38:57 | × | ml| quits (~ml|@user/ml/x-5298235) (Ping timeout: 248 seconds) |
| 2024-09-01 13:52:31 | → | ml| joins (~ml|@user/ml/x-5298235) |
| 2024-09-01 15:02:14 | → | ash3en joins (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
| 2024-09-01 15:36:16 | × | ash3en quits (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en) |
| 2024-09-01 15:50:08 | × | T_X quits (~T_X@diktynna.open-mesh.org) (Read error: Connection reset by peer) |
| 2024-09-01 15:50:44 | → | T_X joins (~T_X@diktynna.open-mesh.org) |
| 2024-09-01 17:55:59 | ← | L29Ah parts (~L29Ah@wikipedia/L29Ah) () |
| 2024-09-01 19:14:34 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 2024-09-01 19:44:34 | → | ash3en joins (~Thunderbi@2a01:c23:8cca:1e00:9657:55d:41ec:8807) |
| 2024-09-01 19:47:25 | → | ash3en1 joins (~Thunderbi@146.70.124.158) |
| 2024-09-01 19:49:27 | × | ash3en quits (~Thunderbi@2a01:c23:8cca:1e00:9657:55d:41ec:8807) (Ping timeout: 276 seconds) |
| 2024-09-01 19:49:27 | ash3en1 | is now known as ash3en |
| 2024-09-01 20:17:27 | × | ash3en quits (~Thunderbi@146.70.124.158) (Quit: ash3en) |
| 2024-09-01 20:23:14 | → | ash3en joins (~Thunderbi@146.70.124.158) |
| 2024-09-01 20:58:40 | × | ash3en quits (~Thunderbi@146.70.124.158) (Quit: ash3en) |
| 2024-09-01 22:23:01 | <liskin> | T_X: oh, I forgot how many changes it was (steam fix) :-D |
| 2024-09-01 23:03:29 | → | catman joins (~catman@user/catman) |
| 2024-09-01 23:10:21 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer) |
| 2024-09-01 23:19:49 | × | catman quits (~catman@user/catman) (Quit: WeeChat 4.3.0-dev) |
| 2024-09-01 23:24:38 | → | catman joins (~catman@user/catman) |
| 2024-09-01 23:25:18 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 2024-09-02 01:31:30 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (Excess Flood) |
| 2024-09-02 01:35:07 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 2024-09-02 02:57:03 | × | td_ quits (~td@i5387091E.versanet.de) (Ping timeout: 246 seconds) |
| 2024-09-02 02:59:00 | → | td_ joins (~td@i5387090A.versanet.de) |
| 2024-09-02 03:06:39 | × | ectospasm quits (~ectospasm@user/ectospasm) (Quit: WeeChat 4.3.5) |
| 2024-09-02 03:11:40 | → | ectospasm joins (~ectospasm@user/ectospasm) |
| 2024-09-02 04:34:32 | → | Digitteknohippie joins (~user@user/digit) |
| 2024-09-02 04:35:01 | × | Digit quits (~user@user/digit) (Ping timeout: 248 seconds) |
| 2024-09-02 04:41:00 | Digitteknohippie | is now known as Digit |
| 2024-09-02 05:22:44 | → | Maeda joins (~Maeda@91-161-10-149.subs.proxad.net) |
| 2024-09-02 05:46:48 | × | hightower2 quits (~hightower@213.186.15.36) (Remote host closed the connection) |
| 2024-09-02 05:47:02 | → | hightower2 joins (~hightower@213.186.15.36) |
| 2024-09-02 05:47:17 | × | cayley5 quits (~cayley5@user/phileasfogg) (Quit: Ping timeout (120 seconds)) |
| 2024-09-02 05:48:01 | → | cayley5 joins (~cayley5@user/phileasfogg) |
| 2024-09-02 05:48:03 | × | zawaken quits (~zawaken@user/zawaken) (Quit: ZNC - https://znc.in) |
| 2024-09-02 05:48:23 | → | zawaken joins (~zawaken@user/zawaken) |
| 2024-09-02 05:49:49 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (Ping timeout: 260 seconds) |
All times are in UTC.