2023/12/03

2023-12-03 02:32:21 +0100tremon(~tremon@83.80.159.219) (Quit: getting boxed in)
2023-12-03 04:49:50 +0100td_(~td@i5387091D.versanet.de) (Ping timeout: 252 seconds)
2023-12-03 04:51:52 +0100td_(~td@83.135.9.0)
2023-12-03 06:52:14 +0100alp_(~alp@2001:861:e3d6:8f80:6297:ed9b:7930:d8f)
2023-12-03 07:55:46 +0100yaslam(~yaslam@user/yaslam)
2023-12-03 07:56:02 +0100yaslam(~yaslam@user/yaslam) ()
2023-12-03 08:01:00 +0100alp_(~alp@2001:861:e3d6:8f80:6297:ed9b:7930:d8f) (Ping timeout: 256 seconds)
2023-12-03 08:14:38 +0100cayley54(~cayley5@user/phileasfogg)
2023-12-03 08:15:11 +0100ghormoon(~ghormoon@ghorland.net) (Ping timeout: 245 seconds)
2023-12-03 08:15:50 +0100ghormoon(~ghormoon@ghorland.net)
2023-12-03 08:16:11 +0100cayley5(~cayley5@user/phileasfogg) (Ping timeout: 245 seconds)
2023-12-03 08:16:12 +0100cayley54cayley5
2023-12-03 09:01:54 +0100alp_(~alp@2001:861:e3d6:8f80:b766:b9e9:37ec:cedc)
2023-12-03 10:57:12 +0100alp_(~alp@2001:861:e3d6:8f80:b766:b9e9:37ec:cedc) (Ping timeout: 268 seconds)
2023-12-03 12:08:00 +0100mc47(~mc47@xmonad/TheMC47)
2023-12-03 12:24:35 +0100td_(~td@83.135.9.0) (Remote host closed the connection)
2023-12-03 12:34:27 +0100td_(~td@83.135.9.0)
2023-12-03 14:23:35 +0100mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2023-12-03 14:58:58 +0100benin(~benin@183.82.207.119) (Read error: Connection reset by peer)
2023-12-03 15:01:02 +0100benin(~benin@183.82.204.79)
2023-12-03 18:58:14 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de) (Remote host closed the connection)
2023-12-03 19:09:12 +0100thyriaen(~thyriaen@91.197.68.193)
2023-12-03 19:10:14 +0100 <thyriaen> what kind of lockscreen do you use ? I don't have one at the moment -- is there something that just uses my sddm theme ? what can you recommend ?
2023-12-03 19:10:25 +0100 <MrElendig> i3lock
2023-12-03 19:11:53 +0100 <thyriaen> can i theme that to my liking ?
2023-12-03 19:12:14 +0100 <MrElendig> sure
2023-12-03 19:12:56 +0100 <MrElendig> (for some notion of theme)
2023-12-03 19:14:16 +0100 <thyriaen> do i need to handle locking after x amount of minutes and locking when i close the laptop lid seperately ?
2023-12-03 19:15:08 +0100 <MrElendig> https://wiki.archlinux.org/title/Session_lock
2023-12-03 19:15:49 +0100 <thyriaen> MrElendig, thanks - will work through that
2023-12-03 19:20:46 +0100dimitris__(~dimitris@126.178.86.79.rev.sfr.net)
2023-12-03 19:21:18 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de)
2023-12-03 19:21:24 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de) (Remote host closed the connection)
2023-12-03 19:22:06 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de)
2023-12-03 19:26:36 +0100 <dimitris__> Hi all recently discovered Xmonad and loving it coming from DWM. I followed the tutorial and now I'm trying to make the workspaces clickable but cannot find a workable solution, can any one help?
2023-12-03 19:27:10 +0100 <liskin> dimitris__: https://xmonad.github.io/xmonad-docs/xmonad-contrib/XMonad-Util-ClickableWorkspaces.html
2023-12-03 19:34:40 +0100 <dimitris__> Thanks a lot @liskin. I've tried that but since I don't know any haskell I come up to an error : ` Couldn't match type: PP -> X PP with: X PP`. My code is exactly the same as the tutorial's nothing essesntial changed
2023-12-03 19:35:02 +0100 <geekosaur> @where paste
2023-12-03 19:35:02 +0100 <lambdabot> Help us help you: please paste full code, input and/or output at e.g. https://paste.tomsmeding.com
2023-12-03 19:35:11 +0100 <geekosaur> somewhere you are missing a parameter
2023-12-03 19:37:33 +0100 <dimitris__> Pasted my xmonad.hs here https://paste.tomsmeding.com/PfjniXew don't if it's accessible
2023-12-03 19:39:31 +0100 <liskin> just drop the "pure"
2023-12-03 19:39:54 +0100 <geekosaur> `pure clickablePP xmobarPP` looks wrong; `pure` takes a single parameter. I think you need another set of parentheses
2023-12-03 19:40:19 +0100 <geekosaur> or that, if it doesn't belong there (I don't use `withEasySB` since I need to log via dbus)
2023-12-03 19:42:16 +0100 <dimitris__> if I just remove pure from the code the barcode displays Could not parse string error
2023-12-03 19:42:44 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de) (Remote host closed the connection)
2023-12-03 19:43:37 +0100todi(~todi@pd9571327.dip0.t-ipconnect.de)
2023-12-03 19:43:42 +0100 <geekosaur> that's not going to be fixed with `pure`
2023-12-03 19:44:26 +0100 <dimitris__> *the statusbar displays*
2023-12-03 19:48:36 +0100 <liskin> that's really weird, are you running a 10 year old version of xmobar or something? :-)
2023-12-03 19:52:21 +0100 <thyriaen> dimitris__, i am using tint2 for clickable workspaces
2023-12-03 19:52:24 +0100 <dimitris__> its version 0.46 in arch linux.
2023-12-03 19:52:41 +0100 <geekosaur> an xmobar PP won't work for a different statusbar
2023-12-03 19:52:53 +0100 <geekosaur> and I think clickablePP only works with xmobar
2023-12-03 19:55:12 +0100 <liskin> hm, weird, 0.46 is new
2023-12-03 19:55:12 +0100 <geekosaur> hm. can you run `xprop -root _XMONAD_LOG` in a terminal and paste the output?
2023-12-03 20:00:50 +0100 <dimitris__> also tried this https://paste.tomsmeding.com/2MdeStpl
2023-12-03 20:01:58 +0100 <geekosaur> yeh, `pure` isn't going to help
2023-12-03 20:02:34 +0100 <geekosaur> xmobar isn't liking what's in the log property. you need to paste that so we can see what's wrong with it
2023-12-03 20:02:39 +0100 <dimitris__> `xprop -root _XMONAD_LOG` output https://paste.tomsmeding.com/U8JEavUn
2023-12-03 20:06:51 +0100 <geekosaur> liskin ^ that looks sane to me
2023-12-03 20:08:38 +0100 <liskin> Right, yeah, it is sane, but it needs UnsafeXPropertyLog because there's <action> in there
2023-12-03 20:09:04 +0100 <liskin> (or UnsafeXMonadLog)
2023-12-03 20:16:19 +0100 <geekosaur> dimitris__, can you pastebin your xmobarrc?
2023-12-03 20:18:13 +0100 <dimitris__> here it is : https://paste.tomsmeding.com/iBLRs59E
2023-12-03 20:38:30 +0100 <geekosaur> you need to change both occurrences of "XMonadLog" to "UnsafeXMonadLog" so it will accept the `action` commands
2023-12-03 20:38:39 +0100 <geekosaur> sorry for the delay
2023-12-03 20:53:34 +0100 <dimitris__> It Worked! Thanks so much!!!!
2023-12-03 20:56:12 +0100dimitris__(~dimitris@126.178.86.79.rev.sfr.net) (Remote host closed the connection)
2023-12-03 20:57:03 +0100dimitris_(~dimitris@126.178.86.79.rev.sfr.net)
2023-12-03 22:50:03 +0100benin(~benin@183.82.204.79) (Ping timeout: 256 seconds)