2025/02/07

2025-02-07 00:00:21 +0100 <ectospasm> Hmmm, do you know what the core dump might be named? I'm running `ls -altr`, so I figured the latest files (including the core dump) would be near the bottom.
2025-02-07 00:00:37 +0100 <ectospasm> I also don't find anything with 'core' or 'dump' in the filename.
2025-02-07 00:07:59 +0100 <geekosaur> it should just be `core`
2025-02-07 00:08:52 +0100 <ectospasm> according to this: https://wiki.archlinux.org/title/Core_dump#Where_do_they_go?, they're in /var/lib/systemd/coredump/. Sure enough, there's a bunch in there for xmonad.
2025-02-07 00:08:53 +0100 <geekosaur> possibly `core.somenumber` (which would be the pid)
2025-02-07 00:09:07 +0100 <geekosaur> ah, so they do play sysctl games
2025-02-07 00:09:20 +0100 <ectospasm> It appears so.
2025-02-07 00:09:38 +0100 <ectospasm> Seems it's tied into systemd, which I appreciate.
2025-02-07 00:09:45 +0100 <ectospasm> (I'm a fan of systemd)
2025-02-07 00:09:52 +0100 <ectospasm> Or an apologist, if you will.
2025-02-07 00:10:03 +0100 <ectospasm> But not here to talk about that.
2025-02-07 00:10:40 +0100 <ectospasm> So, I'm a bit apprehensive about sharing that core dump. Any hints on how to review it? This is starting to get beyond my skillset (if using XMonad wasn't already)
2025-02-07 00:12:53 +0100 <geekosaur> `gdb /path/to/xmonad-x86_64-linux /path/to/coredump` then `bt`
2025-02-07 00:13:23 +0100 <geekosaur> but I'm not sure it'll be helpful, Haskell backtraces are wonky to start with and it's almost certainly built without debug information
2025-02-07 00:13:39 +0100 <geekosaur> but if it's in an FFI call then it should at least show that
2025-02-07 00:13:47 +0100 <ectospasm> FFI?
2025-02-07 00:15:21 +0100 <geekosaur> foreign function interface
2025-02-07 00:15:41 +0100 <geekosaur> we call out to C functions for practically everything, from X server calls, fonts, etc.
2025-02-07 00:19:11 +0100 <ectospasm> OK
2025-02-07 00:19:22 +0100 <ectospasm> Yeah, this uses coredumpctl to analyze core dumps.
2025-02-07 00:19:32 +0100 <ectospasm> I may need to build XMonad with debugging symbols
2025-02-07 00:20:36 +0100 <ectospasm> Also, I should probably not rebuild xmonad before launching it again while I'm trying to debug this (`coredumpctl debug` posted a message saying the executable may not match the core dump, which makes sense since I recompiled it after the dump was produced)
2025-02-07 00:21:31 +0100 <ectospasm> I guess everything linked to it would need debugging symbols as well, not just the Haskell/XMonad bits.
2025-02-07 00:21:47 +0100 <ectospasm> In case it's something outside of XMonad causing this.
2025-02-07 00:22:26 +0100 <ectospasm> I suspect libXft if I had to hazard a guess, since I can't reproduce the behavior if I change the references to 'xft' in xmonad.hs to 'pango'.
2025-02-07 00:23:14 +0100 <geekosaur> most things will have external debug symbols, although you may need to install them with pacman
2025-02-07 00:23:48 +0100 <ectospasm> Yep.
2025-02-07 00:35:46 +0100 <ectospasm> Is there a way for me to build the debugging symbols for the XMonad executable I build?
2025-02-07 00:36:01 +0100 <ectospasm> It looks like coredumpctl is getting the debug symbols for everything else.
2025-02-07 00:36:11 +0100 <ectospasm> Or at least it appears that way.
2025-02-07 00:36:16 +0100 <geekosaur> I think you'd have to set up a build script
2025-02-07 00:37:01 +0100 <ectospasm> Yep, I see output that I don't have anything like that set up when I do recompile it.
2025-02-07 00:37:21 +0100 <ectospasm> Any guides on where I can set that up quickly?
2025-02-07 00:39:13 +0100 <ectospasm> OK, so coredumpctl debug finally finished loading everything, and I see this: warning: 1491 XMonad/Prompt.hs: No such file or directory
2025-02-07 00:39:27 +0100 <ectospasm> So it looks like I'm missing something. I wonder why it compiles?
2025-02-07 00:39:48 +0100 <ectospasm> That's before I built debugging symbols.
2025-02-07 00:41:12 +0100 <geekosaur> https://paste.tomsmeding.com/lkiSFKKs put this in a file called "build" in the same directory as xmonad.hs, and "chmod +x build"
2025-02-07 00:41:59 +0100 <geekosaur> you don't have source files installed, only object files and HI files
2025-02-07 00:42:09 +0100 <geekosaur> which are all you need to build
2025-02-07 01:02:16 +0100zawaken(~zawaken@user/zawaken) (Quit: ZNC - https://znc.in)
2025-02-07 01:05:47 +0100zawaken(~zawaken@user/zawaken) zawaken
2025-02-07 01:14:36 +0100 <ectospasm> Yeah, that build causes the compile to throw a bunch of errors, since ghc on Arch isn't set up properly. I guess this is why it's always recommended to build xmonad with cabal, but I don't want to go that route right now.
2025-02-07 01:15:18 +0100 <ectospasm> This seems very Arch specific now that I think of it. I'll see if I can get any headway in #archlinux.
2025-02-07 01:15:35 +0100 <ectospasm> But at least I now know how to look at the core dump in Arch.
2025-02-07 01:15:58 +0100 <geekosaur> oh, right, forgot Arch needs `-dynamic` in there too
2025-02-07 01:16:13 +0100 <ectospasm> Does it matter where it goes in that ghc line?
2025-02-07 01:16:24 +0100 <geekosaur> not very much
2025-02-07 01:16:33 +0100 <geekosaur> just put it right after `ghc`
2025-02-07 01:17:19 +0100 <ectospasm> OK
2025-02-07 04:01:36 +0100 <ectospasm> Sorry, had to go take care of my family, got a toddler and a newborn!
2025-02-07 04:01:57 +0100 <ectospasm> So here's the complete backtrace of the XMonad crash: https://paste.rs/AzLvB
2025-02-07 04:02:21 +0100 <ectospasm> My guess is XMonad/Prompt.hs is looking for a font I no longer have, or the way to refer to it has changed.
2025-02-07 04:03:17 +0100 <ectospasm> Unfortunately it doesn't say what file it can't find, unless it's XMonad/Prompt.hs itself. But it refers to other lines in that backtrace (I assume the top is the first thing on the stack, the last thing added?)
2025-02-07 04:15:07 +0100 <geekosaur> that one is, as I said earlier, because Arch doesn't install source code to go with the libraries it installs
2025-02-07 04:15:19 +0100 <geekosaur> but it's not related to fonts
2025-02-07 04:16:26 +0100 <geekosaur> it's in defaultXPKeymap
2025-02-07 04:16:45 +0100 <geekosaur> unfortunately you came back right as I was about to go to bed
2025-02-07 04:17:24 +0100 <ectospasm> No worries. I wonder if I deleted something while I was trying to fix it earlier, and it just so happens to compile
2025-02-07 04:17:45 +0100 <ectospasm> That xmonad.hs on my Git repo is old. Let me try restoring it and see if that fixes it.
2025-02-07 04:18:02 +0100 <geekosaur> no, that is completely unrelated
2025-02-07 04:19:40 +0100 <geekosaur> and it's not in defaultXPKeymap either, that's gdb not understandon ghc's debug info (there's an open bug about that)
2025-02-07 04:19:45 +0100 <geekosaur> the crash is in drawWin, which is in a where clause of redrawWindows
2025-02-07 04:20:05 +0100 <geekosaur> printPrompt pm
2025-02-07 04:20:41 +0100 <geekosaur> either that line itself (which seems unlikely) or the fillDrawable just above it (which seems much more likely)
2025-02-07 04:23:13 +0100 <geekosaur> unless printPrompt is being inlined, hm. but I can't really look any more deeply into this tonight
2025-02-07 04:25:01 +0100 <ectospasm> OK, thanks! We'll pick this back up tomorrow, if I'm available.
2025-02-07 04:51:02 +0100alp__(~alp@2001:861:8ca0:4940:c852:f016:ee1c:5cf) (Remote host closed the connection)
2025-02-07 04:51:20 +0100alp__(~alp@2001:861:8ca0:4940:7350:41fe:ef34:5f0f)
2025-02-07 04:52:43 +0100alp__(~alp@2001:861:8ca0:4940:7350:41fe:ef34:5f0f) (Remote host closed the connection)
2025-02-07 04:53:01 +0100alp__(~alp@2001:861:8ca0:4940:eaf7:425c:a3f4:9d66)
2025-02-07 04:54:25 +0100alp__(~alp@2001:861:8ca0:4940:eaf7:425c:a3f4:9d66) (Remote host closed the connection)
2025-02-07 04:54:43 +0100alp__(~alp@2001:861:8ca0:4940:569c:57b4:f240:3d2b)
2025-02-07 04:56:06 +0100alp__(~alp@2001:861:8ca0:4940:569c:57b4:f240:3d2b) (Remote host closed the connection)
2025-02-07 04:56:24 +0100alp__(~alp@2001:861:8ca0:4940:e670:d145:9f1b:674)
2025-02-07 04:57:48 +0100alp__(~alp@2001:861:8ca0:4940:e670:d145:9f1b:674) (Remote host closed the connection)
2025-02-07 04:58:06 +0100alp__(~alp@2001:861:8ca0:4940:5024:ff7b:ce1f:1128)
2025-02-07 04:59:31 +0100alp__(~alp@2001:861:8ca0:4940:5024:ff7b:ce1f:1128) (Remote host closed the connection)
2025-02-07 04:59:49 +0100alp__(~alp@2001:861:8ca0:4940:e025:f618:6016:7d8a)
2025-02-07 05:01:13 +0100alp__(~alp@2001:861:8ca0:4940:e025:f618:6016:7d8a) (Remote host closed the connection)
2025-02-07 05:01:31 +0100alp__(~alp@2001:861:8ca0:4940:cb5b:ce0e:5074:ffb7)
2025-02-07 05:03:13 +0100alp_(~alp@2001:861:8ca0:4940:c426:72e5:a4bc:f323)
2025-02-07 05:04:38 +0100alp_(~alp@2001:861:8ca0:4940:c426:72e5:a4bc:f323) (Remote host closed the connection)
2025-02-07 05:04:55 +0100alp_(~alp@2001:861:8ca0:4940:4256:492f:9aa8:cd35)
2025-02-07 05:07:02 +0100alp__(~alp@2001:861:8ca0:4940:cb5b:ce0e:5074:ffb7) (Ping timeout: 268 seconds)
2025-02-07 05:09:53 +0100alp_(~alp@2001:861:8ca0:4940:4256:492f:9aa8:cd35) (Ping timeout: 252 seconds)
2025-02-07 05:10:45 +0100rekahsoft(~rekahsoft@bras-base-orllon1103w-grc-10-142-112-184-232.dsl.bell.ca) (Ping timeout: 276 seconds)
2025-02-07 07:36:52 +0100gauge_(~gauge@45.32.227.222) (Read error: Connection reset by peer)
2025-02-07 07:38:39 +0100gauge(~gauge@user/gauge) gauge
2025-02-07 07:59:13 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) ash3en
2025-02-07 08:17:56 +0100ft(~ft@p3e9bcd97.dip0.t-ipconnect.de) (Quit: leaving)
2025-02-07 08:41:21 +0100mc47(~yecinem@p200300ee0f18ab85e2b4bd425493f12c.dip0.t-ipconnect.de)
2025-02-07 09:40:40 +0100redgloboli(~redglobol@user/redgloboli) (Quit: ...enter the matrix...)
2025-02-07 09:42:18 +0100redgloboli(~redglobol@user/redgloboli) redgloboli
2025-02-07 10:31:40 +0100m5zs7k(aquares@web10.mydevil.net) (Ping timeout: 244 seconds)
2025-02-07 10:36:53 +0100m5zs7k(aquares@web10.mydevil.net) m5zs7k
2025-02-07 11:08:12 +0100alp(~alp@2001:861:8ca0:4940:d5b5:2163:e0a9:7a7f)
2025-02-07 11:18:34 +0100amenonsen(~amenonsen@pitta.toroid.org) (Remote host closed the connection)
2025-02-07 11:18:51 +0100amenonsen(~amenonsen@pitta.toroid.org) amenonsen
2025-02-07 11:31:02 +0100alp(~alp@2001:861:8ca0:4940:d5b5:2163:e0a9:7a7f) (Remote host closed the connection)
2025-02-07 11:31:19 +0100alp(~alp@2001:861:8ca0:4940:41b4:15ba:b9c5:e001)
2025-02-07 11:32:44 +0100alp(~alp@2001:861:8ca0:4940:41b4:15ba:b9c5:e001) (Remote host closed the connection)
2025-02-07 11:33:00 +0100alp(~alp@2001:861:8ca0:4940:d783:3ed4:b3b2:7c8f)
2025-02-07 11:34:26 +0100alp(~alp@2001:861:8ca0:4940:d783:3ed4:b3b2:7c8f) (Remote host closed the connection)
2025-02-07 11:34:42 +0100alp(~alp@2001:861:8ca0:4940:c543:753a:35f:61ff)
2025-02-07 11:36:25 +0100alp_(~alp@2001:861:8ca0:4940:5fab:379e:f5b9:17db)
2025-02-07 11:37:50 +0100alp_(~alp@2001:861:8ca0:4940:5fab:379e:f5b9:17db) (Remote host closed the connection)
2025-02-07 11:38:07 +0100alp_(~alp@2001:861:8ca0:4940:c66f:9510:c543:5c5b)
2025-02-07 11:39:32 +0100alp_(~alp@2001:861:8ca0:4940:c66f:9510:c543:5c5b) (Remote host closed the connection)
2025-02-07 11:39:50 +0100alp_(~alp@2001:861:8ca0:4940:9b7d:225:6dca:3)
2025-02-07 11:40:28 +0100alp(~alp@2001:861:8ca0:4940:c543:753a:35f:61ff) (Ping timeout: 272 seconds)
2025-02-07 11:41:14 +0100alp_(~alp@2001:861:8ca0:4940:9b7d:225:6dca:3) (Remote host closed the connection)
2025-02-07 11:41:32 +0100alp_(~alp@2001:861:8ca0:4940:cbb9:a4bc:2367:1426)
2025-02-07 11:42:56 +0100alp_(~alp@2001:861:8ca0:4940:cbb9:a4bc:2367:1426) (Remote host closed the connection)
2025-02-07 11:43:13 +0100alp_(~alp@2001:861:8ca0:4940:ded:f36a:cce:f632)
2025-02-07 11:44:38 +0100alp_(~alp@2001:861:8ca0:4940:ded:f36a:cce:f632) (Remote host closed the connection)
2025-02-07 11:44:55 +0100alp_(~alp@2001:861:8ca0:4940:62ab:e74d:1ce5:46a6)
2025-02-07 11:46:20 +0100alp_(~alp@2001:861:8ca0:4940:62ab:e74d:1ce5:46a6) (Remote host closed the connection)
2025-02-07 11:46:38 +0100alp_(~alp@2001:861:8ca0:4940:71ab:5717:4fb2:efbd)
2025-02-07 11:48:02 +0100alp_(~alp@2001:861:8ca0:4940:71ab:5717:4fb2:efbd) (Remote host closed the connection)
2025-02-07 11:48:20 +0100alp_(~alp@2001:861:8ca0:4940:a997:e2f2:f7d1:e67e)
2025-02-07 11:49:44 +0100alp_(~alp@2001:861:8ca0:4940:a997:e2f2:f7d1:e67e) (Remote host closed the connection)
2025-02-07 11:50:01 +0100alp_(~alp@2001:861:8ca0:4940:eb15:e09d:d9d1:dd64)
2025-02-07 11:51:26 +0100alp_(~alp@2001:861:8ca0:4940:eb15:e09d:d9d1:dd64) (Remote host closed the connection)
2025-02-07 11:51:43 +0100alp_(~alp@2001:861:8ca0:4940:ae81:7c78:7938:da13)
2025-02-07 11:53:08 +0100alp_(~alp@2001:861:8ca0:4940:ae81:7c78:7938:da13) (Remote host closed the connection)
2025-02-07 11:53:26 +0100alp_(~alp@2001:861:8ca0:4940:3337:c2d5:219b:8ea3)
2025-02-07 11:55:09 +0100alp__(~alp@2001:861:8ca0:4940:c29d:3ca2:b267:28b1)
2025-02-07 11:56:32 +0100alp__(~alp@2001:861:8ca0:4940:c29d:3ca2:b267:28b1) (Remote host closed the connection)
2025-02-07 11:56:50 +0100alp__(~alp@2001:861:8ca0:4940:79d9:d457:2:aee5)
2025-02-07 11:58:15 +0100alp__(~alp@2001:861:8ca0:4940:79d9:d457:2:aee5) (Remote host closed the connection)
2025-02-07 11:58:33 +0100alp__(~alp@2001:861:8ca0:4940:6519:dc9d:e9c:614a)
2025-02-07 11:58:58 +0100alp_(~alp@2001:861:8ca0:4940:3337:c2d5:219b:8ea3) (Ping timeout: 268 seconds)
2025-02-07 12:00:15 +0100alp_(~alp@2001:861:8ca0:4940:2f2f:adaf:22dd:2984)
2025-02-07 12:01:39 +0100alp_(~alp@2001:861:8ca0:4940:2f2f:adaf:22dd:2984) (Remote host closed the connection)
2025-02-07 12:01:56 +0100alp_(~alp@2001:861:8ca0:4940:f173:421e:50:abf5)
2025-02-07 12:03:21 +0100alp_(~alp@2001:861:8ca0:4940:f173:421e:50:abf5) (Remote host closed the connection)
2025-02-07 12:03:37 +0100alp_(~alp@2001:861:8ca0:4940:6404:3a5a:e9a:718c)
2025-02-07 12:03:54 +0100alp__(~alp@2001:861:8ca0:4940:6519:dc9d:e9c:614a) (Ping timeout: 268 seconds)
2025-02-07 12:05:03 +0100alp_(~alp@2001:861:8ca0:4940:6404:3a5a:e9a:718c) (Remote host closed the connection)
2025-02-07 12:05:21 +0100alp_(~alp@2001:861:8ca0:4940:40e8:5a4c:5708:2ed2)
2025-02-07 12:06:45 +0100alp_(~alp@2001:861:8ca0:4940:40e8:5a4c:5708:2ed2) (Remote host closed the connection)
2025-02-07 12:07:03 +0100alp_(~alp@2001:861:8ca0:4940:7dad:d25a:6bb7:3230)
2025-02-07 12:08:27 +0100alp_(~alp@2001:861:8ca0:4940:7dad:d25a:6bb7:3230) (Remote host closed the connection)
2025-02-07 12:08:45 +0100alp_(~alp@2001:861:8ca0:4940:137a:a43f:4411:7b2b)
2025-02-07 12:10:09 +0100alp_(~alp@2001:861:8ca0:4940:137a:a43f:4411:7b2b) (Remote host closed the connection)
2025-02-07 12:10:26 +0100alp_(~alp@2001:861:8ca0:4940:fcc4:ad40:bfe8:4272)
2025-02-07 12:11:51 +0100alp_(~alp@2001:861:8ca0:4940:fcc4:ad40:bfe8:4272) (Remote host closed the connection)
2025-02-07 12:12:09 +0100alp_(~alp@2001:861:8ca0:4940:8a35:a696:413b:c43a)
2025-02-07 12:13:32 +0100alp_(~alp@2001:861:8ca0:4940:8a35:a696:413b:c43a) (Remote host closed the connection)
2025-02-07 12:13:51 +0100alp_(~alp@2001:861:8ca0:4940:dda1:b533:697e:2ecc)
2025-02-07 12:15:15 +0100alp_(~alp@2001:861:8ca0:4940:dda1:b533:697e:2ecc) (Remote host closed the connection)
2025-02-07 12:15:32 +0100alp_(~alp@2001:861:8ca0:4940:7f1:741d:9be9:bad)
2025-02-07 12:16:57 +0100alp_(~alp@2001:861:8ca0:4940:7f1:741d:9be9:bad) (Remote host closed the connection)
2025-02-07 12:17:15 +0100alp_(~alp@2001:861:8ca0:4940:d1ce:16c7:4dae:178a)
2025-02-07 12:18:39 +0100alp_(~alp@2001:861:8ca0:4940:d1ce:16c7:4dae:178a) (Remote host closed the connection)
2025-02-07 12:18:56 +0100alp_(~alp@2001:861:8ca0:4940:14f3:ef88:5d72:946)
2025-02-07 12:20:21 +0100alp_(~alp@2001:861:8ca0:4940:14f3:ef88:5d72:946) (Remote host closed the connection)
2025-02-07 12:20:38 +0100alp_(~alp@2001:861:8ca0:4940:2887:5196:3f2d:f111)
2025-02-07 12:22:03 +0100alp_(~alp@2001:861:8ca0:4940:2887:5196:3f2d:f111) (Remote host closed the connection)
2025-02-07 12:22:21 +0100alp_(~alp@2001:861:8ca0:4940:1362:b30:65a6:8bf)
2025-02-07 12:24:04 +0100alp__(~alp@2001:861:8ca0:4940:817d:397a:310b:59bd)
2025-02-07 12:27:57 +0100alp_(~alp@2001:861:8ca0:4940:1362:b30:65a6:8bf) (Ping timeout: 268 seconds)
2025-02-07 12:29:11 +0100alp__(~alp@2001:861:8ca0:4940:817d:397a:310b:59bd) (Ping timeout: 268 seconds)
2025-02-07 12:45:31 +0100yaslam(~yaslam@user/yaslam) (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in)
2025-02-07 12:45:51 +0100yaslam(~yaslam@user/yaslam) yaslam
2025-02-07 12:51:23 +0100yaslam(~yaslam@user/yaslam) (Ping timeout: 268 seconds)
2025-02-07 13:17:38 +0100yaslam(~yaslam@user/yaslam) yaslam
2025-02-07 13:31:26 +0100 <geekosaur> ectospasm, looking over things this morning I think `fontS` in the `XPConfig` is a null pointer. Which probably means we're not testing the result of some FFI call.
2025-02-07 13:32:10 +0100 <geekosaur> it's attributed to `printPrompt` because that's what uses the saved font information
2025-02-07 13:39:04 +0100ft(~ft@p3e9bcd97.dip0.t-ipconnect.de) ft
2025-02-07 14:29:55 +0100 <geekosaur> hmmm hmmm… X11-xft doesn't catch NULL return from XftFomntOpen
2025-02-07 14:30:56 +0100 <geekosaur> but also if USE_XFT isn't enabled the XFT font name with "xft:" prefix is attempted as a UTF-8 FontSet, which is practically guaranteed to fail. and I still need to check if that produces an unchecked NULL pointer
2025-02-07 14:38:03 +0100 <geekosaur> okay, that one has `thrrowIfNone` at least. so (a) yes, you seem to be missing a font (b) X11-xft doesn't handle it properly
2025-02-07 14:44:08 +0100yaslam(~yaslam@user/yaslam) (Ping timeout: 272 seconds)
2025-02-07 14:44:40 +0100yaslam(~yaslam@user/yaslam) yaslam
2025-02-07 14:49:58 +0100yaslam(~yaslam@user/yaslam) (Ping timeout: 252 seconds)
2025-02-07 14:50:32 +0100yaslam(~yaslam@user/yaslam) yaslam
2025-02-07 14:51:51 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Ping timeout: 265 seconds)
2025-02-07 14:52:11 +0100ash3en(~Thunderbi@146.70.124.222) ash3en
2025-02-07 15:16:06 +0100alp(~alp@2001:861:8ca0:4940:96cf:da97:63ee:4d39)
2025-02-07 15:17:29 +0100ash3en(~Thunderbi@146.70.124.222) (Quit: ash3en)
2025-02-07 15:17:46 +0100alp(~alp@2001:861:8ca0:4940:96cf:da97:63ee:4d39) (Remote host closed the connection)
2025-02-07 15:18:35 +0100alp(~alp@2001:861:8ca0:4940:2075:3d97:bc20:fbec)
2025-02-07 15:19:06 +0100ash3en(~Thunderbi@146.70.124.222) ash3en
2025-02-07 15:20:18 +0100alp(~alp@2001:861:8ca0:4940:2075:3d97:bc20:fbec) (Remote host closed the connection)
2025-02-07 15:21:07 +0100alp(~alp@2001:861:8ca0:4940:a3a2:6e88:379e:aa42)
2025-02-07 15:22:39 +0100ash3en(~Thunderbi@146.70.124.222) (Client Quit)
2025-02-07 15:22:51 +0100alp(~alp@2001:861:8ca0:4940:a3a2:6e88:379e:aa42) (Remote host closed the connection)
2025-02-07 15:23:14 +0100ash3en(~Thunderbi@146.70.124.222) ash3en
2025-02-07 15:23:39 +0100alp(~alp@2001:861:8ca0:4940:44a5:7d99:84a4:3579)
2025-02-07 15:25:23 +0100alp(~alp@2001:861:8ca0:4940:44a5:7d99:84a4:3579) (Remote host closed the connection)
2025-02-07 15:26:14 +0100alp(~alp@2001:861:8ca0:4940:10d4:1c8:6378:f058)
2025-02-07 15:27:56 +0100alp(~alp@2001:861:8ca0:4940:10d4:1c8:6378:f058) (Remote host closed the connection)
2025-02-07 15:52:13 +0100bsima(~bsima@2604:a880:400:d0::19f1:7001) (Quit: ZNC 1.8.2 - https://znc.in)
2025-02-07 15:54:54 +0100bsima(~bsima@143.198.118.179) bsima
2025-02-07 16:14:16 +0100m5zs7k(aquares@web10.mydevil.net) (Ping timeout: 268 seconds)
2025-02-07 16:35:43 +0100m5zs7k(aquares@web10.mydevil.net) m5zs7k
2025-02-07 16:57:00 +0100 <geekosaur> https://github.com/xmonad/X11-xft/pull/21
2025-02-07 17:30:09 +0100 <ectospasm> OK, so I need to see which font is missing and restore it.
2025-02-07 17:30:51 +0100 <geekosaur> yes
2025-02-07 17:31:04 +0100 <geekosaur> or change oit to one which exists
2025-02-07 17:43:34 +0100 <ectospasm> I need to find which font it's failing on. It may be multiple, as the other clue besides the crash is my dzen2 bar isn't showing either, which I suspect is a similar if not the same problem.
2025-02-07 18:10:45 +0100bsjd(~user@ip-81-11-160-53.dsl.scarlet.be) bsjd
2025-02-07 18:13:57 +0100bsjd(~user@ip-81-11-160-53.dsl.scarlet.be) (Remote host closed the connection)
2025-02-07 18:25:03 +0100bsjd(~user@ip-81-11-160-53.dsl.scarlet.be) bsjd
2025-02-07 18:57:41 +0100mc47(~yecinem@p200300ee0f18ab85e2b4bd425493f12c.dip0.t-ipconnect.de) (Ping timeout: 268 seconds)
2025-02-07 19:06:38 +0100ash3en(~Thunderbi@146.70.124.222) (Ping timeout: 245 seconds)
2025-02-07 19:06:42 +0100ash3en1(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) ash3en
2025-02-07 19:09:00 +0100ash3en1ash3en
2025-02-07 20:07:06 +0100ChubaDuba(~ChubaDuba@46.147.210.207) ChubaDuba
2025-02-07 21:29:12 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en)
2025-02-07 23:01:13 +0100bsjd`(~user@ip-81-11-160-53.dsl.scarlet.be)
2025-02-07 23:02:46 +0100bsjd(~user@ip-81-11-160-53.dsl.scarlet.be) (Ping timeout: 252 seconds)
2025-02-07 23:09:49 +0100ChubaDuba(~ChubaDuba@46.147.210.207) (Quit: WeeChat 4.5.1)
2025-02-07 23:46:30 +0100hightower2(~hightower@213.186.15.36) (Remote host closed the connection)
2025-02-07 23:46:48 +0100hightower2(~hightower@213.186.15.36) hightower2