Logs: liberachat/#xmonad
| 2021-11-03 20:13:30 | <FOSSHuman[m]> | According to the creator of sourcehut's blog: https://drewdevault.com/2021/10/15/Status-update-October-2021.html they are working on an IRC bouncer for paid sourcehut users aswell, pretty cool stuff |
| 2021-11-03 20:14:01 | <FOSSHuman[m]> | They also can encrypt emails to you using your PGP public key |
| 2021-11-03 20:16:12 | <FOSSHuman[m]> | Mailing list example: |
| 2021-11-03 20:16:26 | FOSSHuman[m] | uploaded an image: (174KiB) < https://libera.ems.host/_matrix/media/r0/download/matrix.org/uFvQeVNIcRCWGqKulnRjXbgD/sourcehut-mailing-list-example.png > |
| 2021-11-03 20:19:34 | <FOSSHuman[m]> | The creator of Sourcehut has worked on a CLI email client called aerc that has syntax highlighting (for sourcehut mailing list email patches)/ pgp support |
| 2021-11-03 20:19:58 | <FOSSHuman[m]> | https://aerc-mail.org/ |
| 2021-11-03 20:21:18 | <FOSSHuman[m]> | Uses SMTP and/or IMAP btw, so your email provider has to support sending emails to an SMTP and/or IMAP server |
| 2021-11-03 20:34:30 | × | SenranKaguya quits (~weechat@c-73-15-19-170.hsd1.ca.comcast.net) (Ping timeout: 268 seconds) |
| 2021-11-03 20:51:47 | → | SenranKaguya joins (~weechat@c-73-15-19-170.hsd1.ca.comcast.net) |
| 2021-11-03 20:57:28 | <desantra> | Is there an easy way to get xmonad talking to polybar? |
| 2021-11-03 21:00:13 | <geekosaur> | if polybar speaks ewmh then it should be sufficient to use the ewmh combinator. otherwise, I don't know polybar so I don't know if there's a way to get DynamicLog / StatusBar inforation to it |
| 2021-11-03 21:01:56 | <davve> | ewmh is the key |
| 2021-11-03 21:02:01 | <davve> | i am using polybar |
| 2021-11-03 21:02:21 | <davve> | if you want i can share my xmonad.hs if you promise not to make fun of me |
| 2021-11-03 21:04:31 | <davve> | https://pastecode.io/s/9fp2417v |
| 2021-11-03 21:05:02 | <davve> | welcoming any suggestions on how to make it neater, would not attribute myself as a haskell programmer yet |
| 2021-11-03 21:05:36 | × | rieper quits (~riepernet@sxbeta1.geo.uni-leipzig.de) (Quit: No Ping reply in 180 seconds.) |
| 2021-11-03 21:05:44 | <davve> | get that and use generic for wm-restack in your polybar |
| 2021-11-03 21:05:47 | <davve> | and you should be set |
| 2021-11-03 21:06:33 | <davve> | the ewmh related stuff |
| 2021-11-03 21:06:45 | → | rieper joins (~riepernet@sxbeta1.geo.uni-leipzig.de) |
| 2021-11-03 21:07:21 | <davve> | should be pretty easy to do, but figuring that out how took some time |
| 2021-11-03 21:14:11 | <desantra> | my polybar.error says it doesn't recognise wm-restack=generic even though I'm on 3.5.7 which should support it (I think) |
| 2021-11-03 21:17:30 | <desantra> | https://i.imgur.com/G0JO0Zc.png lmao |
| 2021-11-03 21:22:23 | desantra | writes Haskell for a living and yet can't get their xmonad working :P |
| 2021-11-03 21:23:15 | <desantra> | I'm already using the ewmh combinator and fullscreen hook since the fullscreen combinator doesn't exist in 0.15 |
| 2021-11-03 21:31:28 | <dsamperi> | > putStrLn "test" |
| 2021-11-03 21:31:30 | <lambdabot> | <IO ()> |
| 2021-11-03 21:32:10 | <geekosaur> | lambdabot doesn't run IO |
| 2021-11-03 21:32:40 | <geekosaur> | you can /query yahb and get working IO, with some limitations. it uses % instead of > |
| 2021-11-03 21:36:04 | <dsamperi> | thanks geekosaur |
| 2021-11-03 21:38:13 | ← | dsamperi parts (~dsamperi@2603-7000-3b42-5400-ad06-78d6-67f9-46d9.res6.spectrum.com) (Konversation terminated!) |
| 2021-11-03 21:54:00 | × | desantra quits (~skykanin@user/skykanin) (Quit: WeeChat 3.3) |
| 2021-11-03 22:05:11 | <FOSSHuman[m]> | Hey guys, how do I avoid a certain strut in a certain direction on a certain layout specifically??? |
| 2021-11-03 22:06:57 | <geekosaur> | use avoidStrutsOn on that layout |
| 2021-11-03 22:07:55 | <geekosaur> | https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Hooks-ManageDocks.html#v:avoidStrutsOn |
| 2021-11-03 22:08:35 | <geekosaur> | avoidStruts is avoidStrutsOn [U,D,L,R] |
| 2021-11-03 22:09:39 | <geekosaur> | you may have to move avoidStruts to other layouts instead of over all of them to have things work as expected |
| 2021-11-03 22:17:37 | <FOSSHuman[m]> | <geekosaur> "you may have to move avoidStruts..." <- Nice thank you.. |
| 2021-11-03 22:27:42 | → | Narcht074 joins (~user@143.137.70.156) |
| 2021-11-03 22:27:51 | <Narcht074> | Hi guys |
| 2021-11-03 22:28:25 | <Narcht074> | Yestarday I was here trying to fix this problem and didn't work |
| 2021-11-03 22:28:32 | <Narcht074> | Could someone help me? |
| 2021-11-03 22:35:35 | <geekosaur> | we can try |
| 2021-11-03 22:40:51 | <Narcht074> | please |
| 2021-11-03 22:44:03 | → | Narcht007 joins (~user@143.137.70.156) |
| 2021-11-03 22:46:06 | → | rekahsoft joins (~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com) |
| 2021-11-03 22:56:03 | × | Narcht074 quits (~user@143.137.70.156) (Remote host closed the connection) |
| 2021-11-03 22:58:30 | × | seschwar quits (~seschwar@user/seschwar) (Quit: :wq) |
| 2021-11-03 23:02:51 | LordOfThePings | is now known as Hash |
| 2021-11-03 23:14:42 | → | NaRcht07` joins (~user@143.137.70.156) |
| 2021-11-03 23:14:45 | <NaRcht07`> | hi |
| 2021-11-03 23:17:58 | × | NaRcht07` quits (~user@143.137.70.156) (Remote host closed the connection) |
| 2021-11-03 23:24:18 | × | Narcht007 quits (~user@143.137.70.156) (Remote host closed the connection) |
| 2021-11-03 23:41:54 | geekosaur | wonders if they are actually going to ask a question, or if we're to guess what that earlier discussion was since they don't seem to have used anything like that nick |
| 2021-11-03 23:47:46 | → | Extropy joins (~extropy@user/extropy) |
| 2021-11-04 00:12:06 | × | catman quits (~catman@user/catman) (Ping timeout: 260 seconds) |
| 2021-11-04 01:00:03 | → | dsamperi joins (~dsamperi@2603-7000-3b42-5400-ad06-78d6-67f9-46d9.res6.spectrum.com) |
| 2021-11-04 01:11:22 | × | SenranKaguya quits (~weechat@c-73-15-19-170.hsd1.ca.comcast.net) (Ping timeout: 260 seconds) |
| 2021-11-04 01:26:53 | × | Solitary quits (~Solitary@user/solitary) (Ping timeout: 268 seconds) |
| 2021-11-04 01:27:44 | → | Solitary joins (~Solitary@user/solitary) |
| 2021-11-04 01:38:44 | × | dsamperi quits (~dsamperi@2603-7000-3b42-5400-ad06-78d6-67f9-46d9.res6.spectrum.com) (Quit: Konversation terminated!) |
| 2021-11-04 01:44:48 | → | SenranKaguya joins (~weechat@c-73-15-19-170.hsd1.ca.comcast.net) |
| 2021-11-04 02:05:36 | → | catman joins (~catman@user/catman) |
| 2021-11-04 03:02:59 | × | banc quits (banc@gateway/vpn/airvpn/banc) (Ping timeout: 268 seconds) |
| 2021-11-04 03:12:51 | × | rekahsoft quits (~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com) (Ping timeout: 268 seconds) |
| 2021-11-04 03:22:29 | → | banc joins (banc@gateway/vpn/airvpn/banc) |
| 2021-11-04 03:54:49 | × | Extropy quits (~extropy@user/extropy) (Quit: WeeChat 3.3) |
| 2021-11-04 07:27:50 | → | qbt joins (~qbt@user/edun) |
| 2021-11-04 07:49:44 | × | SenranKaguya quits (~weechat@c-73-15-19-170.hsd1.ca.comcast.net) (Ping timeout: 268 seconds) |
| 2021-11-04 08:05:18 | → | dschrempf joins (~dominik@070-207.dynamic.dsl.fonira.net) |
| 2021-11-04 08:17:27 | × | geekosaur quits (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
| 2021-11-04 08:17:51 | → | geekosaur joins (~geekosaur@xmonad/geekosaur) |
| 2021-11-04 08:39:10 | <Solid> | I suppose it was the latter |
| 2021-11-04 09:19:45 | → | mc47 joins (~mc47@xmonad/TheMC47) |
| 2021-11-04 09:25:44 | × | mc47 quits (~mc47@xmonad/TheMC47) (Remote host closed the connection) |
| 2021-11-04 09:36:19 | → | cfricke joins (~cfricke@user/cfricke) |
| 2021-11-04 09:59:39 | <davve> | aw desantra left |
| 2021-11-04 09:59:52 | <davve> | would have told him that you need to compile polybar from source probably |
| 2021-11-04 10:03:54 | × | cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.3) |
| 2021-11-04 10:19:21 | → | jceb[m] joins (~jcebmatri@2001:470:69fc:105::1396) |
| 2021-11-04 10:20:40 | <jceb[m]> | Hi guys. Is there a way to find out from outside xmonad which screen is currently focused by xmonad? I'd like to move a window from an unfocused screen to the currently selected screen |
| 2021-11-04 10:35:37 | × | qbt quits (~qbt@user/edun) (Ping timeout: 268 seconds) |
| 2021-11-04 10:39:48 | × | dschrempf quits (~dominik@070-207.dynamic.dsl.fonira.net) (Ping timeout: 256 seconds) |
| 2021-11-04 10:54:23 | → | rarelyafk joins (~minty@pool-173-61-191-195.cmdnnj.fios.verizon.net) |
| 2021-11-04 10:56:23 | <geekosaur> | jceb[m], not easily. there are ways to get DynamicLog to disgorge that information (and my personal config does so) but EWMH doens't have that concept |
| 2021-11-04 11:32:22 | × | Hash quits (~stoned@is.coding.when.stoned.io) (Quit: WeeChat 3.3) |
| 2021-11-04 11:35:07 | → | dschrempf joins (~dominik@070-207.dynamic.dsl.fonira.net) |
| 2021-11-04 11:40:22 | × | dschrempf quits (~dominik@070-207.dynamic.dsl.fonira.net) (Ping timeout: 268 seconds) |
| 2021-11-04 11:42:50 | → | dschrempf joins (~dominik@070-207.dynamic.dsl.fonira.net) |
| 2021-11-04 12:05:05 | <geekosaur> | courtesy of #perryprog in #haskell-beginners: https://changelog.complete.org/archives/7562-i-introduced-my-5-year-old-and-2-year-old-to-startx-and-xmonad-theyre-delighted |
| 2021-11-04 12:05:16 | <geekosaur> | if it's still down try via web.archive.org |
| 2021-11-04 12:06:17 | × | dschrempf quits (~dominik@070-207.dynamic.dsl.fonira.net) (Ping timeout: 268 seconds) |
| 2021-11-04 12:08:37 | <geekosaur> | (originally from HN) |
| 2021-11-04 12:27:45 | → | cfricke joins (~cfricke@user/cfricke) |
| 2021-11-04 12:34:49 | <FOSSHuman[m]> | > 2^999999 |
| 2021-11-04 12:34:51 | <lambdabot> | 4950328114647949125348961808150951625366812120893783666433198057265854741654... |
| 2021-11-04 12:41:52 | → | mc47 joins (~mc47@xmonad/TheMC47) |
| 2021-11-04 12:58:28 | → | Guest84 joins (~Guest84@2001:420:44c1:2576:a0e0:ede3:82e9:654b) |
| 2021-11-04 13:00:37 | <tomsmeding> | > showHex (2^999999) "" |
All times are in UTC.