Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→ 184,922 events total
2023-08-07 09:17:48 × ft quits (~ft@p3e9bcd02.dip0.t-ipconnect.de) (Quit: leaving)
2023-08-07 09:54:47 × Benzi-Junior quits (~BenziJuni@dsl-149-64-112.hive.is) (Ping timeout: 246 seconds)
2023-08-07 11:48:09 kayvank joins (~user@52-119-115-185.PUBLIC.monkeybrains.net)
2023-08-07 12:03:15 kayvank parts (~user@52-119-115-185.PUBLIC.monkeybrains.net) (ERC 5.4 (IRC client for GNU Emacs 28.1))
2023-08-07 13:08:10 Benzi-Junior joins (~BenziJuni@dsl-149-64-112.hive.is)
2023-08-07 17:52:56 × cfricke quits (~cfricke@user/cfricke) (Ping timeout: 244 seconds)
2023-08-07 19:16:04 ft joins (~ft@p3e9bcd02.dip0.t-ipconnect.de)
2023-08-07 22:15:59 <jabuxas> how could i put `LD_PRELOAD="$LD_PRELOAD:/usr/\$LIB/libgamemodeauto.so.0" XL_SECRET_PROVIDER=FILE xivlauncher` inside a spawn in EZConfig?
2023-08-07 22:16:14 <jabuxas> xmonad doesn't like the $ inside the command
2023-08-07 22:17:18 <geekosaur> what it really doesn't like are the double quotes; you need to escape them
2023-08-07 22:18:10 <geekosaur> `spawn "LD_PRELOAD=\"$LD_PRELOAD:/usr/\$LIB/libgamemodeauto.so.0\" XL_SECRET_PROVIDER=FILE xivlauncher"`
2023-08-07 22:18:56 <fizzie> Does that really need a \ in \$LIB?
2023-08-07 22:20:36 <fizzie> Or rather, if it needs a \ in the command, it'd presuambly need a \\ in the Haskell, since \$ is no escape sequence.
2023-08-07 22:23:02 <geekosaur> true
2023-08-07 22:23:18 <geekosaur> but I'm not sure what's going on there…
2023-08-07 22:27:01 <geekosaur> assuming it came out of a shell script or shell command line, it'd be `spawn "LD_PRELOAD=\"$LD_PRELOAD:/usr/\\$LIB/libgamemodeauto.so.0\" XL_SECRET_PROVIDER=FILE xivlauncher"`
2023-08-07 23:07:52 <jabuxas> yea it was a shell command, I had tried changing " to ' but didn't have success. didn't try to escape it. ty both
2023-08-07 23:08:34 <geekosaur> right, '' in shell causes `$LD_PRELOAD` to not expand
2023-08-07 23:08:56 <geekosaur> and you can't wrap a string in `''` in Haskell
2023-08-08 02:33:12 × td_ quits (~td@i53870914.versanet.de) (Ping timeout: 246 seconds)
2023-08-08 02:35:19 td_ joins (~td@i53870913.versanet.de)
2023-08-08 03:46:01 Rydwxz_ joins (~rw@cpe-75-82-51-90.socal.res.rr.com)
2023-08-08 03:47:13 Rydwxz joins (~Rydwxz@cpe-75-82-51-90.socal.res.rr.com)
2023-08-08 03:49:17 Rydwxz_ parts (~rw@cpe-75-82-51-90.socal.res.rr.com) ()
2023-08-08 03:53:20 × Rydwxz quits (~Rydwxz@cpe-75-82-51-90.socal.res.rr.com) (Quit: Quit)
2023-08-08 03:55:50 Rydwxz joins (~rw@cpe-75-82-51-90.socal.res.rr.com)
2023-08-08 05:50:25 Maeda joins (~Maeda@91-161-10-149.subs.proxad.net)
2023-08-08 06:02:02 × telser quits (~quassel@user/telser) (Ping timeout: 245 seconds)
2023-08-08 06:07:22 × Natch quits (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (Remote host closed the connection)
2023-08-08 06:07:31 vrs_ joins (~vrs@user/vrs)
2023-08-08 06:09:14 _qw_ joins (~eqw@31.134.178.99)
2023-08-08 06:12:59 × _qw quits (~eqw@31.134.178.99) (*.net *.split)
2023-08-08 06:12:59 × Solid quits (~slot@xmonad/slotThe) (*.net *.split)
2023-08-08 06:12:59 × vrs quits (~vrs@user/vrs) (*.net *.split)
2023-08-08 06:12:59 × burp quits (~quassel@hedgewars/sysadmin/burp) (*.net *.split)
2023-08-08 06:12:59 × liskin quits (~liskin@xmonad/liskin) (*.net *.split)
2023-08-08 06:19:21 burp joins (~quassel@hedgewars/sysadmin/burp)
2023-08-08 06:19:32 Solid joins (~slot@xmonad/slotThe)
2023-08-08 06:20:38 liskin joins (~liskin@xmonad/liskin)
2023-08-08 06:56:29 thyriaen joins (~thyriaen@2a01:aea0:dd4:6a18:6245:cbff:fe9f:48b1)
2023-08-08 06:57:09 <thyriaen> i would like to use smartBorders, but only the 2nd condition ( so only no borders on fullscreen, if i only have one application open i still want a border )
2023-08-08 06:58:02 <thyriaen> is that possible ? alternatively can i combine a doFullFloat in my ManageHook to also remove the border on a specific window ?
2023-08-08 07:04:29 <Solid> thyriaen: I guess that should be the `OnlyScreenFloat' ambiguity
2023-08-08 07:04:34 <thyriaen> yes
2023-08-08 07:04:39 <thyriaen> i just found the same solution
2023-08-08 07:04:59 <thyriaen> i am using lessBorders OnlyScreenFloat $... now
2023-08-08 07:05:00 <thyriaen> thanks
2023-08-08 07:29:05 cfricke joins (~cfricke@user/cfricke)
2023-08-08 07:33:46 × tv quits (~tv@user/tv) (Ping timeout: 245 seconds)
2023-08-08 07:35:46 tv joins (~tv@user/tv)
2023-08-08 08:04:10 vrs_ is now known as vrs
2023-08-08 08:27:35 Natch joins (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se)
2023-08-08 08:29:37 × Rydwxz quits (~rw@cpe-75-82-51-90.socal.res.rr.com) (Ping timeout: 260 seconds)
2023-08-08 08:35:27 Hmmf joins (~Hmmf@2a01:e0a:582:bb40:e5c6:f484:7015:1722)
2023-08-08 09:00:18 × thaumavorio quits (~thaumavor@thaumavor.io) (Quit: ZNC 1.8.2 - https://znc.in)
2023-08-08 09:02:01 thaumavorio joins (~thaumavor@thaumavor.io)
2023-08-08 09:12:03 thunderrd joins (~thunderrd@183.182.115.138)
2023-08-08 09:31:07 × ft quits (~ft@p3e9bcd02.dip0.t-ipconnect.de) (Quit: leaving)
2023-08-08 09:37:10 × Hmmf quits (~Hmmf@2a01:e0a:582:bb40:e5c6:f484:7015:1722) (Quit: Client closed)
2023-08-08 09:37:22 Hmmf joins (~Hmmf@2a01:e0a:582:bb40:e5c6:f484:7015:1722)
2023-08-08 09:52:25 × incertia quits (~incertia@209.122.71.127) (*.net *.split)
2023-08-08 09:52:25 × joshproehl quits (~quassel@user/joshproehl) (*.net *.split)
2023-08-08 09:52:25 × ghormoon quits (~ghormoon@ghorland.net) (*.net *.split)
2023-08-08 09:52:25 × bsima quits (~bsima@143.198.118.179) (*.net *.split)
2023-08-08 09:52:25 × pl quits (sid98063@id-98063.helmsley.irccloud.com) (*.net *.split)
2023-08-08 09:52:25 × dexter1 quits (dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split)
2023-08-08 09:59:51 × Hmmf quits (~Hmmf@2a01:e0a:582:bb40:e5c6:f484:7015:1722) (Quit: Client closed)
2023-08-08 10:04:25 incertia joins (~incertia@209.122.71.127)
2023-08-08 10:04:25 joshproehl joins (~quassel@user/joshproehl)
2023-08-08 10:04:25 ghormoon joins (~ghormoon@ghorland.net)
2023-08-08 10:04:25 bsima joins (~bsima@143.198.118.179)
2023-08-08 10:04:25 pl joins (sid98063@id-98063.helmsley.irccloud.com)
2023-08-08 10:04:25 dexter1 joins (dexter@2a01:7e00::f03c:91ff:fe86:59ec)
2023-08-08 12:27:00 mc47 joins (~mc47@xmonad/TheMC47)
2023-08-08 14:26:56 × cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 4.0.1)
2023-08-08 14:39:38 × hrberg quits (~quassel@171.79-160-161.customer.lyse.net) (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
2023-08-08 14:39:59 hrberg joins (~quassel@171.79-160-161.customer.lyse.net)
2023-08-08 14:58:15 × thunderrd quits (~thunderrd@183.182.115.138) (Remote host closed the connection)
2023-08-08 15:05:37 × Natch quits (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (Remote host closed the connection)
2023-08-08 15:46:59 Rydwxz joins (~rw@cpe-75-82-51-90.socal.res.rr.com)
2023-08-08 16:02:08 × Rydwxz quits (~rw@cpe-75-82-51-90.socal.res.rr.com) (Ping timeout: 256 seconds)
2023-08-08 17:10:22 × thyriaen quits (~thyriaen@2a01:aea0:dd4:6a18:6245:cbff:fe9f:48b1) (Remote host closed the connection)
2023-08-08 17:55:50 ft joins (~ft@p3e9bcd02.dip0.t-ipconnect.de)
2023-08-08 18:13:18 <xmonadtrack> xmonad-contrib Tony Zorman * v0.17.1-168-g0ca3ce7a: X.U.Run: Add toInput (13 minutes ago, 2 files, 7+ 0-) https://github.com/xmonad/xmonad-contrib/commit/0ca3ce7a18e8
2023-08-08 18:13:20 <xmonadtrack> xmonad-contrib Tony Zorman * v0.17.1-169-g1b7fd6d8: X.U.Run: Add >&&> and >||> (9 minutes ago, 2 files, 25+ 0-) https://github.com/xmonad/xmonad-contrib/commit/1b7fd6d8c99e
2023-08-08 20:16:01 × jabuxas quits (~jabuxas@user/jabuxas) (Ping timeout: 260 seconds)
2023-08-08 20:55:07 × mc47 quits (~mc47@xmonad/TheMC47) (Quit: Leaving)
2023-08-09 00:04:41 hightower3 joins (~hightower@141-136-199-12.dsl.iskon.hr)
2023-08-09 00:06:55 × hightower2 quits (~hightower@43-215.dsl.iskon.hr) (Ping timeout: 240 seconds)
2023-08-09 00:29:58 <geekosaur> from matrix: "hello, I've been hacking at a script to display an image of my used keys for xmonad shortcuts (because I wanted to know what keys I still have xD). I'm curious to know if anyone else finds this helpful, if you do, it's here: https://github.com/iogrt/xmonadkeymap"
2023-08-09 00:40:37 Rydwxz joins (~rw@cpe-75-82-51-90.socal.res.rr.com)
2023-08-09 00:41:53 <Rydwxz> hello xmonad enthusiasts, I am an Arch and Xmonad newbie and I've gotten into trouble with compiler packages. I installed xmonad with stack as explained in the docs but due to getting mildly confused in the config tutorial, I installed xmobar with cabal-install. that was OK until, it seems, an arch update broke ghc and I discovered this after trying unsuccessfully to compile a custom, haskell-only version
2023-08-09 00:41:59 <Rydwxz> of xmobar. Now, I am down to only stack installed, deleted ~/.cabal and pacman -R ghc. Xmobar has been reinstalled thru stack, but it's not able to find the compiler.
2023-08-09 00:43:33 <Rydwxz> that is, when I try to run xmobar from the command line, I get xmobar: ghc: runProcess: exec: does not exist (No such file or directory) , but I thought stack would internally choose the correct compiler version for me?
2023-08-09 00:43:55 <geekosaur> it has to go via `stack exec` for that to work
2023-08-09 00:44:10 <Rydwxz> when I refresh xmonad with my old config, that was working before the debale began, it simply fails to run xmobar.
2023-08-09 00:46:35 <Rydwxz> !thanks for that tip geekosaur, you're correct, that command gave me much more intesting results, errors related to the bad syntax I wrote in the config file!!
2023-08-09 00:46:53 <Rydwxz> I cannot get used to not using tabs, lol
2023-08-09 00:47:54 <Rydwxz> but how can I ensure that xmonad will call it thru stack like this? I am using withEasySB and statusBarProp as shown in the config\
2023-08-09 00:49:20 <geekosaur[c]> Somewhere in there it has "xmobar", change that to "stack exec xmobar"

All times are in UTC.