2022/11/08

2022-11-08 00:02:29 +0100 <geekosaur[m]> Yes you need to declare dbus as a dependency
2022-11-08 00:02:40 +0100 <jabuxas> im declaring it on my .cabal file
2022-11-08 00:02:45 +0100 <jabuxas> but it is being overwritten
2022-11-08 00:03:52 +0100 <geekosaur[m]> If you are using stack then check package.yaml and you may also need it in stack.yaml extra-deps
2022-11-08 00:08:02 +0100 <jabuxas> https://0x0.st/oEEx.txt
2022-11-08 00:08:18 +0100 <jabuxas> how do I declare it on both?
2022-11-08 00:09:45 +0100 <jabuxas> actually, I should only need to add dbus-1.2.22 on stack.yaml
2022-11-08 00:10:08 +0100 <jabuxas> but I don't know the command to actually rebuild it
2022-11-08 00:10:55 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68) (Ping timeout: 260 seconds)
2022-11-08 00:12:43 +0100 <geekosaur> you still need it in the cabal file, but if stack sees a package.yaml it'll overwrite the cabal file. I'd just remove that and work with the cabal file directly; the other way is just confusing
2022-11-08 00:13:40 +0100 <geekosaur> looks like dbus is in the resolver already so it doesn't need to be added to stack.yaml
2022-11-08 00:13:46 +0100 <jabuxas> oh it worked by adding dbus to package yaml
2022-11-08 00:13:55 +0100 <jabuxas> do I really need import qualified Codec.Binary.UTF8.String as UTF8?
2022-11-08 00:14:29 +0100 <geekosaur> dbusOutput uses it
2022-11-08 00:15:09 +0100 <jabuxas> but you don't have it
2022-11-08 00:15:40 +0100 <geekosaur> oh, right, we changed that
2022-11-08 00:15:52 +0100 <geekosaur> encoding is done in a different place now so you don't need it
2022-11-08 00:16:14 +0100 <geekosaur> you used to get a utf8-encoded string out of DynamicLog, now that's done in output when needed
2022-11-08 00:16:29 +0100 <geekosaur> so no, you don't need that or the dependency
2022-11-08 00:16:51 +0100 <jabuxas> ok
2022-11-08 00:17:08 +0100 <jabuxas> i'm trying to scrape whatever i can from your config
2022-11-08 00:19:07 +0100thyriaen(~thyriaen@2a01:aea0:dd4:470d:6245:cbff:fe9f:48b1) (Quit: Leaving)
2022-11-08 00:21:06 +0100 <jabuxas> looks like just copying the highlighted lines doesn't work
2022-11-08 00:21:09 +0100 <jabuxas> who would've thought
2022-11-08 00:21:47 +0100 <geekosaur> you need both groups, and I forgot https://github.com/geekosaur/xmonad.hs/blob/skkukuk/xmonad.hs#L173
2022-11-08 00:22:04 +0100 <geekosaur> which is what hooks them together
2022-11-08 00:23:29 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68)
2022-11-08 00:25:44 +0100 <jabuxas> you were right
2022-11-08 00:25:50 +0100 <jabuxas> it is a hassle to set up
2022-11-08 00:26:19 +0100jao(~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 260 seconds)
2022-11-08 00:26:36 +0100 <geekosaur> someday I may try to package it up compatibly with StatusBar's stuff and add it to xmonad-extras
2022-11-08 00:26:56 +0100 <geekosaur> I'm not sure it supports enough to do that currently though
2022-11-08 00:27:13 +0100jao(~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)
2022-11-08 00:27:42 +0100 <jabuxas> https://dpaste.com/5LBJF23HE
2022-11-08 00:27:48 +0100 <jabuxas> any ideas?
2022-11-08 00:28:29 +0100 <jabuxas> https://0x0.st/oEEd.txt
2022-11-08 00:28:30 +0100 <jabuxas> how it looks rn
2022-11-08 00:29:11 +0100 <geekosaur> most of that is you need `{-# LANGUAGE OverloadedStrings #-}` at the very top of the file. the `getSortBy…` stuff is https://github.com/geekosaur/xmonad.hs/blob/skkukuk/xmonad.hs#L39
2022-11-08 00:30:35 +0100 <jabuxas> it indeed cleared up a lot of things
2022-11-08 00:31:27 +0100 <jabuxas> what about the horizontalScreenOrderer?
2022-11-08 00:32:46 +0100 <geekosaur> https://github.com/geekosaur/xmonad.hs/blob/skkukuk/xmonad.hs#L10
2022-11-08 00:34:29 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
2022-11-08 00:34:40 +0100 <geekosaur> you might prefer to replace that whole thing with your own logging; I figured since I care more about windows than workspaces and those are in the top bar, I just show which workspace is on each screen + any urgent workspaces
2022-11-08 00:34:52 +0100 <geekosaur> + layout + title of active window
2022-11-08 00:35:27 +0100 <geekosaur> you may want to fiddle with the pango colors as well, mine are based on the rather dark gtk theme I use
2022-11-08 00:36:10 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de)
2022-11-08 00:36:52 +0100 <geekosaur> with a more typical color scheme I suspect my choice of inactive color will be unreadable
2022-11-08 00:36:58 +0100 <geekosaur> (pangoInactive)
2022-11-08 00:38:08 +0100 <jabuxas> i was thinking of getting it working first and then understanding and tweaking
2022-11-08 00:38:36 +0100 <jabuxas> tbh I don't really need xmonad logging except so it can say what layout is on each workspace, which i won't even really use.
2022-11-08 00:40:22 +0100noex(~null@user/noex)
2022-11-08 00:40:41 +0100 <jabuxas> now that I think about it.. why did i go through all that trouble
2022-11-08 00:43:51 +0100 <jabuxas> geekosaur: thank you for your help again. i think i'm the most troublesome person here at this point. i will settle a bit and then try to tweak anything if needed
2022-11-08 01:04:50 +0100rundown(~eb0t@33ba0e59.skybroadband.com) (Remote host closed the connection)
2022-11-08 01:14:05 +0100thyriaen(~thyriaen@2a01:aea0:dd4:470d:4c78:c477:402b:896a)
2022-11-08 01:14:52 +0100jabuxas(~jabuxas@user/jabuxas) (Quit: WeeChat 3.6)
2022-11-08 01:43:20 +0100thyriaen(~thyriaen@2a01:aea0:dd4:470d:4c78:c477:402b:896a) (Quit: Leaving)
2022-11-08 02:11:07 +0100sogens(sogens@gateway/vpn/protonvpn/sogens) (Quit: WeeChat 3.6)
2022-11-08 02:11:28 +0100sogens(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 02:22:07 +0100vanvik1(~vanvik@185.138.33.250) (Quit: Ping timeout (120 seconds))
2022-11-08 02:27:53 +0100vanvik1(~vanvik@185.138.33.250)
2022-11-08 02:32:29 +0100amenonsen(~amenonsen@pitta.toroid.org) (Read error: Software caused connection abort)
2022-11-08 02:32:46 +0100amenonsen(~amenonsen@pitta.toroid.org)
2022-11-08 02:37:34 +0100smashgrab(~smashgrab@188.166.8.80) (Read error: Software caused connection abort)
2022-11-08 02:37:53 +0100smashgrab(~smashgrab@188.166.8.80)
2022-11-08 02:54:52 +0100purity-gearD[m](~pipe-gear@2001:470:69fc:105::2:ac18) (Read error: Software caused connection abort)
2022-11-08 02:55:05 +0100purity-gearD[m](~pipe-gear@2001:470:69fc:105::2:ac18)
2022-11-08 03:19:20 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68) (Ping timeout: 260 seconds)
2022-11-08 03:20:09 +0100sogens(sogens@gateway/vpn/protonvpn/sogens) (Ping timeout: 260 seconds)
2022-11-08 03:41:51 +0100berberman(~berberman@user/berberman)
2022-11-08 03:58:20 +0100sogens(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 04:03:04 +0100banc(banc@gateway/vpn/airvpn/banc) (Ping timeout: 252 seconds)
2022-11-08 04:19:01 +0100td_(~td@83.135.9.26) (Ping timeout: 252 seconds)
2022-11-08 04:20:52 +0100td_(~td@83.135.9.57)
2022-11-08 04:24:46 +0100banc(banc@gateway/vpn/airvpn/banc)
2022-11-08 04:41:08 +0100smashgra_(~smashgrab@188.166.8.80)
2022-11-08 04:41:14 +0100smashgrab(~smashgrab@188.166.8.80) (Ping timeout: 260 seconds)
2022-11-08 04:54:27 +0100sagax(~sagax_nb@user/sagax)
2022-11-08 06:02:40 +0100byorgey(~byorgey@155.138.238.211) (Read error: Software caused connection abort)
2022-11-08 06:08:22 +0100byorgey(~byorgey@155.138.238.211)
2022-11-08 06:51:20 +0100Guest40(~Guest40@114.130.184.166)
2022-11-08 06:54:20 +0100 <Guest40> Hello, so i am using the XMonad.Layout.Fullscreen module and when i use the "$ fullscreenSupportBorder" it works fine no issues, on my dekstop. However, with the same config on my laptop when i fullscreen it slows down. However disabling this means border on fullscreen and there seems to be no lag with borders. I used toggleBorder and all the other
2022-11-08 06:54:21 +0100 <Guest40> methods to get rid of the border results where the same. Is this is a display size issue? my monitor is 22inch and my laptop screen is only 14inch
2022-11-08 06:55:59 +0100 <Guest40> the way i am sure this was lagging is by playing a video. The playback speed slows down ridiculously, And it becomes unresponsive.
2022-11-08 06:56:58 +0100 <Guest40> so what does disabling borders have to do with anything? I suspect its a gpu issue?
2022-11-08 06:57:38 +0100Guest40(~Guest40@114.130.184.166) (Quit: Client closed)
2022-11-08 06:58:00 +0100sagax(~sagax_nb@user/sagax) (Read error: Connection reset by peer)
2022-11-08 06:58:14 +0100sagax(~sagax_nb@user/sagax)
2022-11-08 07:02:59 +0100sogens(sogens@gateway/vpn/protonvpn/sogens) (Ping timeout: 260 seconds)
2022-11-08 07:21:12 +0100chomwitt(~chomwitt@2a02:587:7a0a:c00:1ac0:4dff:fedb:a3f1)
2022-11-08 07:21:22 +0100Guest40(~Guest40@114.130.184.166)
2022-11-08 07:21:29 +0100sogens(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 07:21:37 +0100Guest40(~Guest40@114.130.184.166) (Client Quit)
2022-11-08 07:44:55 +0100brianbnt(~brianbnt@user/brianbnt) (Quit: ZNC 1.8.2 - https://znc.in)
2022-11-08 07:45:16 +0100brianbnt(~brianbnt@user/brianbnt)
2022-11-08 07:56:25 +0100jao(~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 260 seconds)
2022-11-08 08:09:37 +0100sogens(sogens@gateway/vpn/protonvpn/sogens) (Read error: Connection reset by peer)
2022-11-08 08:36:49 +0100mncheck(~mncheck@193.224.205.254)
2022-11-08 09:02:34 +0100sagax(~sagax_nb@user/sagax) (Ping timeout: 260 seconds)
2022-11-08 09:11:46 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de) (Quit: leaving)
2022-11-08 09:12:48 +0100thyriaen(~thyriaen@2a01:aea0:dd4:470d:4c78:c477:402b:896a)
2022-11-08 09:20:52 +0100sagax(~sagax_nb@user/sagax)
2022-11-08 09:47:25 +0100cfricke(~cfricke@user/cfricke)
2022-11-08 10:00:05 +0100valarMorghulis[m(~lladeebll@2001:470:69fc:105::2:72) (Quit: You have been kicked for being idle)
2022-11-08 10:00:47 +0100blaa(~bla@79.191.158.170.ipv4.supernova.orange.pl)
2022-11-08 10:00:50 +0100bla(~bla@79.191.158.170.ipv4.supernova.orange.pl) (Ping timeout: 255 seconds)
2022-11-08 10:08:07 +0100thyriaen(~thyriaen@2a01:aea0:dd4:470d:4c78:c477:402b:896a) (Remote host closed the connection)
2022-11-08 10:13:07 +0100sogens(~sogens@pa49-197-143-118.pa.qld.optusnet.com.au)
2022-11-08 11:06:17 +0100 <xmonadtrack> xmonad-contrib L. S. Leary * v0.17.1-75-g608a8e4b: Fix documentation bug in X.A.GridSelect (15 minutes ago, 1 file, 2+ 2-) https://github.com/xmonad/xmonad-contrib/commit/608a8e4b882c
2022-11-08 11:09:57 +0100Solid[m](~slot-matr@2001:470:69fc:105::1:a84)
2022-11-08 11:14:35 +0100werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 248 seconds)
2022-11-08 12:04:26 +0100bla(~bla@79.191.158.170.ipv4.supernova.orange.pl)
2022-11-08 12:04:34 +0100blaa(~bla@79.191.158.170.ipv4.supernova.orange.pl) (Ping timeout: 260 seconds)
2022-11-08 12:25:06 +0100thunderrd(~thunderrd@183.182.111.97)
2022-11-08 12:34:10 +0100jao(~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)
2022-11-08 12:46:01 +0100cfricke(~cfricke@user/cfricke) (Quit: WeeChat 3.7.1)
2022-11-08 14:08:19 +0100sogens(~sogens@pa49-197-143-118.pa.qld.optusnet.com.au) (Ping timeout: 252 seconds)
2022-11-08 14:22:47 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68)
2022-11-08 14:25:21 +0100cfricke(~cfricke@user/cfricke)
2022-11-08 14:42:04 +0100cfricke(~cfricke@user/cfricke) (Ping timeout: 260 seconds)
2022-11-08 14:44:17 +0100cfricke(~cfricke@user/cfricke)
2022-11-08 14:52:09 +0100sogens(~sogens@pa49-197-143-118.pa.qld.optusnet.com.au)
2022-11-08 15:02:52 +0100Guest7515(~Guest75@114.130.184.166)
2022-11-08 15:03:47 +0100Guest7515(~Guest75@114.130.184.166) (Client Quit)
2022-11-08 15:26:59 +0100thunderrd(~thunderrd@183.182.111.97) (Ping timeout: 260 seconds)
2022-11-08 15:39:15 +0100thunderrd(~thunderrd@183.182.111.97)
2022-11-08 16:17:09 +0100sogens(~sogens@pa49-197-143-118.pa.qld.optusnet.com.au) (Ping timeout: 260 seconds)
2022-11-08 16:18:47 +0100sogens(~sogens@pa49-197-160-216.pa.qld.optusnet.com.au)
2022-11-08 16:21:48 +0100Guest7587(~Guest75@114.130.184.166)
2022-11-08 16:22:08 +0100Guest7587(~Guest75@114.130.184.166) (Client Quit)
2022-11-08 16:30:34 +0100sogens(~sogens@pa49-197-160-216.pa.qld.optusnet.com.au) (Ping timeout: 260 seconds)
2022-11-08 16:32:16 +0100sogens(~sogens@pa49-182-190-39.pa.qld.optusnet.com.au)
2022-11-08 16:39:54 +0100sogens(~sogens@pa49-182-190-39.pa.qld.optusnet.com.au) (Ping timeout: 260 seconds)
2022-11-08 16:41:39 +0100sogens(~sogens@pa49-182-194-10.pa.qld.optusnet.com.au)
2022-11-08 16:46:43 +0100cfricke(~cfricke@user/cfricke) (Ping timeout: 252 seconds)
2022-11-08 16:50:19 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68) (Ping timeout: 252 seconds)
2022-11-08 16:51:07 +0100sogens(~sogens@pa49-182-194-10.pa.qld.optusnet.com.au) (Ping timeout: 248 seconds)
2022-11-08 16:52:42 +0100cfricke(~cfricke@user/cfricke)
2022-11-08 16:53:07 +0100sogens(~sogens@pa49-182-197-107.pa.qld.optusnet.com.au)
2022-11-08 17:00:54 +0100sogens(~sogens@pa49-182-197-107.pa.qld.optusnet.com.au) (Ping timeout: 260 seconds)
2022-11-08 17:02:30 +0100sogens(~sogens@211.30.24.76)
2022-11-08 17:11:13 +0100sogens(~sogens@211.30.24.76) (Ping timeout: 252 seconds)
2022-11-08 17:12:54 +0100sogens(~sogens@pa49-182-2-1.pa.qld.optusnet.com.au)
2022-11-08 17:13:08 +0100cfricke(~cfricke@user/cfricke) (Ping timeout: 248 seconds)
2022-11-08 17:19:23 +0100sogens(~sogens@pa49-182-2-1.pa.qld.optusnet.com.au) (Ping timeout: 248 seconds)
2022-11-08 17:21:20 +0100sogens(~sogens@pa49-182-5-169.pa.qld.optusnet.com.au)
2022-11-08 17:27:55 +0100sogens(~sogens@pa49-182-5-169.pa.qld.optusnet.com.au) (Ping timeout: 248 seconds)
2022-11-08 17:29:43 +0100sogens(~sogens@pa49-197-228-193.pa.qld.optusnet.com.au)
2022-11-08 17:36:13 +0100sogens(~sogens@pa49-197-228-193.pa.qld.optusnet.com.au) (Ping timeout: 252 seconds)
2022-11-08 17:44:17 +0100thunderrd(~thunderrd@183.182.111.97) (Remote host closed the connection)
2022-11-08 17:50:12 +0100sogens(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 18:13:11 +0100jabuxas(~jabuxas@user/jabuxas)
2022-11-08 18:17:52 +0100Guest75(~Guest75@114.130.184.166)
2022-11-08 18:20:21 +0100Guest75(~Guest75@114.130.184.166) (Client Quit)
2022-11-08 18:27:06 +0100jabuxas(~jabuxas@user/jabuxas) (Quit: WeeChat 3.6)
2022-11-08 18:27:26 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68)
2022-11-08 18:30:40 +0100incertia(~incertia@209.122.71.127)
2022-11-08 18:50:58 +0100werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2022-11-08 20:54:49 +0100werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 260 seconds)
2022-11-08 20:55:02 +0100werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2022-11-08 21:36:22 +0100mesaoptimizermesaoptimizer2
2022-11-08 21:46:52 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de)
2022-11-08 22:01:41 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de) (Remote host closed the connection)
2022-11-08 22:04:43 +0100ft(~ft@p508dbd59.dip0.t-ipconnect.de)
2022-11-08 22:40:15 +0100sogens_(~sogens@pa49-182-90-57.pa.qld.optusnet.com.au)
2022-11-08 22:40:56 +0100sogens(sogens@gateway/vpn/protonvpn/sogens) (Read error: Connection reset by peer)
2022-11-08 22:45:04 +0100sogens_(~sogens@pa49-182-90-57.pa.qld.optusnet.com.au) (Ping timeout: 260 seconds)
2022-11-08 22:46:38 +0100sogens_(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 22:53:12 +0100sogens_(sogens@gateway/vpn/protonvpn/sogens) (Read error: Connection reset by peer)
2022-11-08 23:10:23 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68) (Quit: Going elsewhere)
2022-11-08 23:11:46 +0100mvk(~mvk@2607:fea8:5ce3:8500::4b68)
2022-11-08 23:24:37 +0100sogens(sogens@gateway/vpn/protonvpn/sogens)
2022-11-08 23:55:40 +0100bwolf(c3bc363dd1@2604:bf00:561:2000::180)