Logs: liberachat/#xmonad
| 2022-07-10 18:19:00 | <kxdasd> | ? |
| 2022-07-10 18:26:36 | <geekosaur[m]> | Yes |
| 2022-07-10 18:37:41 | → | alternateved joins (~alternate@82.180.151.116) |
| 2022-07-10 18:41:12 | × | kxdasd quits (~user@206.62.170.243) (Quit: ERC 5.4 (IRC client for GNU Emacs 28.1)) |
| 2022-07-10 18:42:46 | × | alternateved quits (~alternate@82.180.151.116) (Ping timeout: 272 seconds) |
| 2022-07-10 20:37:45 | → | chomwitt joins (~chomwitt@2a02:587:dc0d:4a00:bc12:23b1:7459:b5b8) |
| 2022-07-10 20:44:56 | × | mvk quits (~mvk@2607:fea8:5ce3:8500::909a) (Ping timeout: 255 seconds) |
| 2022-07-10 20:48:57 | → | mvk joins (~mvk@2607:fea8:5ce3:8500::909a) |
| 2022-07-10 22:40:27 | × | chomwitt quits (~chomwitt@2a02:587:dc0d:4a00:bc12:23b1:7459:b5b8) (Ping timeout: 260 seconds) |
| 2022-07-10 22:43:04 | → | sagax joins (~sagax_nb@user/sagax) |
| 2022-07-10 23:02:30 | × | mvk quits (~mvk@2607:fea8:5ce3:8500::909a) (Ping timeout: 264 seconds) |
| 2022-07-11 00:50:48 | × | sogens quits (~sogens@211.30.26.217) (Quit: WeeChat 3.5) |
| 2022-07-11 00:51:11 | → | sogens joins (~sogens@211.30.26.217) |
| 2022-07-11 00:53:03 | × | sogens quits (~sogens@211.30.26.217) (Client Quit) |
| 2022-07-11 00:53:23 | → | sogens joins (~sogens@211.30.26.217) |
| 2022-07-11 01:13:46 | × | sogens quits (~sogens@211.30.26.217) (Quit: WeeChat 3.5) |
| 2022-07-11 01:54:21 | → | mvk joins (~mvk@2607:fea8:5ce3:8500::909a) |
| 2022-07-11 02:05:27 | × | banc quits (banc@gateway/vpn/airvpn/banc) (Ping timeout: 276 seconds) |
| 2022-07-11 02:10:44 | × | steve__ quits (~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 255 seconds) |
| 2022-07-11 02:24:21 | → | banc joins (banc@gateway/vpn/airvpn/banc) |
| 2022-07-11 02:29:30 | × | td_ quits (~td@muedsl-82-207-238-125.citykom.de) (Ping timeout: 240 seconds) |
| 2022-07-11 02:31:32 | → | td_ joins (~td@muedsl-82-207-238-180.citykom.de) |
| 2022-07-11 02:39:02 | × | jao quits (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 272 seconds) |
| 2022-07-11 02:43:06 | × | terrorjack quits (~terrorjac@2a01:4f8:1c1e:509a::1) (Quit: The Lounge - https://thelounge.chat) |
| 2022-07-11 02:45:32 | → | terrorjack joins (~terrorjac@2a01:4f8:1c1e:509a::1) |
| 2022-07-11 03:44:58 | × | mvk quits (~mvk@2607:fea8:5ce3:8500::909a) (Ping timeout: 244 seconds) |
| 2022-07-11 04:13:32 | → | ^[ joins (~user@user//x-8473491) |
| 2022-07-11 04:34:12 | <Zedgamer9128[m]> | why is this error happening |
| 2022-07-11 04:34:13 | <Zedgamer9128[m]> | ``` |
| 2022-07-11 04:34:13 | <Zedgamer9128[m]> | xmonad.hs:88:27-51: Non-exhaustive patterns in lambda |
| 2022-07-11 04:34:13 | <Zedgamer9128[m]> | ``` |
| 2022-07-11 04:34:51 | <Zedgamer9128[m]> | , ppOrder = \[ws, l, _, wins] -> [ws] |
| 2022-07-11 04:34:56 | <Zedgamer9128[m]> | this is the code |
| 2022-07-11 04:35:08 | <Zedgamer9128[m]> | i only want ws info |
| 2022-07-11 04:36:09 | <Zedgamer9128[m]> | and i think it was working before |
| 2022-07-11 04:36:28 | <Zedgamer9128[m]> | and also in xmobar all i see is updatin |
| 2022-07-11 04:36:30 | <Zedgamer9128[m]> | s/updatin/updating/ |
| 2022-07-11 04:44:15 | <Lears> | Zedgamer9128[m]: `[ws, l, _, wins]` is a pattern that only accepts lists of length four, producing an error on input of any other length. Since you just want the first element, you can write this function as `take 1`, which takes a prefix of length at most one and never fails. |
| 2022-07-11 04:45:01 | <Zedgamer9128[m]> | Lears: oh how would i do that |
| 2022-07-11 04:45:51 | <Lears> | , ppOrder = take 1 |
| 2022-07-11 04:48:13 | <Zedgamer9128[m]> | this worked |
| 2022-07-11 04:48:14 | <Zedgamer9128[m]> | Lears: ``` |
| 2022-07-11 04:48:14 | <Zedgamer9128[m]> | , ppOrder = \(ws:_:_:_) -> [ws] |
| 2022-07-11 04:48:14 | <Zedgamer9128[m]> | ``` |
| 2022-07-11 04:48:31 | <Zedgamer9128[m]> | from dynamicLog documentation |
| 2022-07-11 04:53:14 | <Lears> | That's a pattern which fails if the list has fewer than three elements, despite only using the first. It's not really idiomatic haskell, but I guess this function is supposed to make some assumptions about the size of its input. |
| 2022-07-11 04:58:31 | <Zedgamer9128[m]> | what is the latest xmonad version |
| 2022-07-11 04:59:02 | <Zedgamer9128[m]> | i have it installed by stack. how would upgrade xmonad to the latest version by stack |
| 2022-07-11 04:59:10 | <Zedgamer9128[m]> | * how would i upgrade xmonad |
| 2022-07-11 04:59:24 | <Zedgamer9128[m]> | do i just git pull and stack install |
| 2022-07-11 05:58:18 | <Solid> | Zedgamer9128[m]: yes |
| 2022-07-11 05:58:52 | <Solid> | r.e. ppOrder: yes it's unfortunate that it takes a list and not something more concrete, but much to late to change that now :( |
| 2022-07-11 06:08:24 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (*.net *.split) |
| 2022-07-11 06:08:24 | × | fcser quits (~fcser@booty.farted.net) (*.net *.split) |
| 2022-07-11 06:08:24 | × | eq_w quits (~eqw@31.134.178.99) (*.net *.split) |
| 2022-07-11 06:08:24 | × | ghormoon quits (~ghormoon@ghorland.net) (*.net *.split) |
| 2022-07-11 06:08:24 | × | x88x88x quits (~x88x88x@149.28.53.172) (*.net *.split) |
| 2022-07-11 06:08:24 | × | exordiri quits (~ex@user/exordiri) (*.net *.split) |
| 2022-07-11 06:08:24 | × | haskl quits (~haskl@user/haskl) (*.net *.split) |
| 2022-07-11 06:08:34 | → | fcser joins (~fcser@booty.farted.net) |
| 2022-07-11 06:09:04 | → | eq_w joins (~eqw@31.134.178.99) |
| 2022-07-11 06:09:21 | → | lambdabot joins (~lambdabot@haskell/bot/lambdabot) |
| 2022-07-11 06:09:33 | → | ghormoon joins (~ghormoon@ghorland.net) |
| 2022-07-11 06:09:34 | → | exordiri joins (~ex@user/exordiri) |
| 2022-07-11 06:09:46 | → | haskl joins (~haskl@user/haskl) |
| 2022-07-11 06:11:59 | × | ircbrowse_tom quits (~ircbrowse@2a01:4f8:1c1c:9319::1) (ZNC 1.7.5+deb4 - https://znc.in) |
| 2022-07-11 06:13:35 | → | ircbrowse_tom joins (~ircbrowse@2a01:4f8:1c1c:9319::1) |
| 2022-07-11 06:13:35 | Server | sets mode +cnt |
| 2022-07-11 06:13:45 | → | bsima joins (~bsima@143.198.118.179) |
| 2022-07-11 06:13:45 | → | Solid joins (~slot@xmonad/slotThe) |
| 2022-07-11 06:14:50 | → | RMSBach joins (~guygastin@137.184.131.156) |
| 2022-07-11 06:58:46 | → | cfricke joins (~cfricke@user/cfricke) |
| 2022-07-11 07:01:10 | → | alternateved joins (~alternate@185.244.214.230) |
| 2022-07-11 07:22:59 | → | benin0 joins (~benin@183.82.29.162) |
| 2022-07-11 08:58:32 | × | alternateved quits (~alternate@185.244.214.230) (Remote host closed the connection) |
| 2022-07-11 09:16:37 | → | pond joins (~pond@2001:8003:363d:3b00:ba74:5157:553:b9ea) |
| 2022-07-11 09:19:40 | × | pond quits (~pond@2001:8003:363d:3b00:ba74:5157:553:b9ea) (Client Quit) |
| 2022-07-11 10:32:23 | → | spaceseller joins (~spacesell@31.147.205.13) |
| 2022-07-11 10:45:38 | × | spaceseller quits (~spacesell@31.147.205.13) (Quit: Leaving) |
| 2022-07-11 11:32:39 | → | steve__ joins (~steve@ool-182c2b80.dyn.optonline.net) |
| 2022-07-11 11:40:37 | → | pok_ joins (~pok@41.157.227.24) |
| 2022-07-11 11:42:24 | <pok_> | hey all, for some reason my xmobar won't start up. fresh install using stack of xmonad-0.17, contrib-0.17 and xmobar-0.44. anybody know where i can see the logs for why its not working? |
| 2022-07-11 11:44:55 | <geekosaur[m]> | Typically they go to the session log which is usually something like .xsession-errors |
| 2022-07-11 11:48:11 | <pok_> | thanks, it doesn't looks like i have an .xsession-errors file at the moment. presume thats because i am using sddm. will see if i can track it down. |
| 2022-07-11 11:49:04 | <geekosaur[m]> | .local/sddm/xorg-session.log iirc |
| 2022-07-11 11:49:34 | <pok_> | geekosaur[m]: excellent - found it. thanks! |
| 2022-07-11 11:52:54 | <geekosaur> | and usually it'll have something like "expecting 's'" which is its annoying way of saying you're missing a plugin |
| 2022-07-11 12:04:14 | <pok_> | great - thanks will keep that in mind. my issue was that xmobar wasn't on the path |
| 2022-07-11 12:10:21 | <geekosaur> | right, that';s another common one. I use a wrapper script which sources my dotfiles, which aren't normally read by X11 startup |
| 2022-07-11 12:18:07 | × | defjam quits (~eb0t@33bb8326.skybroadband.com) (Read error: Connection reset by peer) |
| 2022-07-11 12:24:02 | → | defjam joins (~eb0t@33bb4cd7.skybroadband.com) |
| 2022-07-11 12:32:49 | → | dschrempf joins (~dominik@mobiledyn-62-240-134-33.mrsn.at) |
| 2022-07-11 12:40:15 | → | jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
| 2022-07-11 12:42:13 | × | dschrempf quits (~dominik@mobiledyn-62-240-134-33.mrsn.at) (Quit: WeeChat 3.5) |
| 2022-07-11 13:00:50 | × | pok_ quits (~pok@41.157.227.24) (Ping timeout: 240 seconds) |
| 2022-07-11 13:31:10 | → | pok_ joins (~pok@41.157.227.24) |
| 2022-07-11 13:52:28 | → | mrbeastwick joins (~mrbeastwi@pool-108-35-212-7.nwrknj.fios.verizon.net) |
| 2022-07-11 13:53:06 | <mrbeastwick> | Does the TagWindows library allow one to display tagged windows on multiple workspaces? https://xmonad.github.io/xmonad-docs/xmonad-contrib-0.17.0.9/XMonad-Actions-TagWindows.html |
| 2022-07-11 13:55:06 | <geekosaur> | withTaggedP "tagname" copyToAll -- or see copy and friends. https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Actions-CopyWindow.html |
| 2022-07-11 13:55:23 | <mrbeastwick> | thanks :) |
All times are in UTC.