2022/03/28

2022-03-28 00:28:33 +0200sagax(~sagax_nb@user/sagax) (Quit: Konversation terminated!)
2022-03-28 00:43:21 +0200tremon(~tremon@83-84-18-241.cable.dynamic.v4.ziggo.nl) (Quit: getting boxed in)
2022-03-28 00:53:17 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2022-03-28 00:54:58 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 02:18:22 +0200mvk(~mvk@2607:fea8:5cc3:7e00::7980)
2022-03-28 03:03:19 +0200steve_(~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 260 seconds)
2022-03-28 04:04:06 +0200banc(banc@gateway/vpn/airvpn/banc) (Ping timeout: 252 seconds)
2022-03-28 04:14:08 +0200 <abastro[m]> What is named scratchpad? Never used it but seems like everyone is using it
2022-03-28 04:17:05 +0200 <fizzie> A scratchpad is a thing where you bind a key to start/show a particular application (maybe most commonly a terminal) if it's not currently on-screen, or hide it away if it is. A named scratchpad is a thing that allows you to have more than one such (by giving them names), so you could have one key for a scratchpad terminal, another for a scratchpad text editor, and so on.
2022-03-28 04:20:02 +0200 <abastro[m]> Oh, so it creates another workspace?
2022-03-28 04:20:54 +0200 <fizzie> Well... technically yes, it does create a "NSP" workspace to hold the windows while they're hidden, but that's really just an implementation detail and best hidden under the rug.
2022-03-28 04:21:58 +0200 <abastro[m]> Hmmm
2022-03-28 04:23:52 +0200Natch(~natch@c-67bae255.014-297-73746f25.bbcust.telenor.se) (Remote host closed the connection)
2022-03-28 04:24:49 +0200banc(banc@gateway/vpn/airvpn/banc)
2022-03-28 04:27:07 +0200 <fizzie> Normally you filter out the "NSP" workspace from status bars and such, and don't include it in your workspace-switching key bindings. It's just there to provide a place for the windows when they're not shown. The keybinding is used to bring the window to your current workspace when you want to look at it. Commonly it's also floated.
2022-03-28 04:28:43 +0200 <abastro[m]> NSP windows are supposed to be easily turned on and off right?
2022-03-28 04:29:15 +0200Natch(~natch@c-67bae255.014-297-73746f25.bbcust.telenor.se)
2022-03-28 04:33:37 +0200 <fizzie> Okay, here's how it behaves: You press a dedicated key combination, corresponding to a particular configured thing. One of three things happens: 1) If that thing isn't running at all (doesn't have a matching window), it's started. 2) If it is running, but is not on the currently focused workspace, it's brought to it and focused. 3) Otherwise (as in, it's already on the current workspace), it's
2022-03-28 04:33:39 +0200 <fizzie> hidden away but not closed.
2022-03-28 04:33:41 +0200 <fizzie> I guess you might describe that as "easily turned on and off" maybe.
2022-03-28 04:36:57 +0200 <abastro[m]> So you mean, it is practically always on?
2022-03-28 04:36:58 +0200 <abastro[m]> Hmmm
2022-03-28 04:38:06 +0200 <abastro[m]> Btw, I've seen ppl using sth like
2022-03-28 04:38:16 +0200 <abastro[m]> "M-X" for Alt-X I think
2022-03-28 04:38:20 +0200 <abastro[m]> How does it work?
2022-03-28 04:40:17 +0200 <fizzie> It's not on before the first time (in a session) you bring it up, but yes, normally the scratchpad window/program isn't actually closed.
2022-03-28 04:40:38 +0200 <abastro[m]> So anything expensive would rather not be there
2022-03-28 04:41:14 +0200 <abastro[m]> Btw what happens if the scratchpad app tries to bring itself into focus, like what happens with messenger apps?
2022-03-28 04:43:11 +0200 <fizzie> "M-x" is something you could give https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Util-EZConfig.html "additionalKeysP" function to specify a key. The module provides two different ways to specify keys, plain (modifier, key) pairs (for additionalKeys) and "Emacs-style" key specifiers like that (for additionalKeysP).
2022-03-28 04:44:40 +0200 <fizzie> ("M" isn't always alt, it's whatever is configured as the mod key in the config given to additionalKeysP. A Windows key is a common choice too.)
2022-03-28 04:45:38 +0200 <abastro[m]> I see, that should be more concise!!
2022-03-28 04:52:33 +0200 <abastro[m]> What happens if the scratchpad app tries to bring itself into focus?
2022-03-28 05:02:56 +0200 <fizzie> I haven't used a scratchpad with any such. What happens if it's just on a normal workspace that's not currently on screen?
2022-03-28 05:04:21 +0200 <abastro[m]> It jumps onto my current workspace.
2022-03-28 05:04:25 +0200 <abastro[m]> Quite annoying tbh
2022-03-28 05:04:53 +0200 <abastro[m]> Matrix chat apps knows better to stay at its place, but others...
2022-03-28 05:05:37 +0200 <fizzie> I would kind of expect that to be the case with the scratchpad too, then. As in, it would just show up, and the next press on the key would hide it again.
2022-03-28 05:07:33 +0200 <abastro[m]> It would show up at my current workspace?
2022-03-28 05:07:37 +0200 <abastro[m]> Gah..
2022-03-28 05:09:44 +0200 <fizzie> The scratchpad hiding isn't any different from just putting the window into a workspace you're not looking at, so that's what I'd expect. I'm sure there's some workarounds for applications like that though.
2022-03-28 05:13:49 +0200 <abastro[m]> I see.
2022-03-28 05:13:52 +0200 <fizzie> In particular, if it works via EWMH, this might be relevant: https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Hooks-EwmhDesktops.html#g:5
2022-03-28 05:14:07 +0200 <fizzie> "Set (replace) the hook which is invoked when a client sends a _NET_ACTIVE_WINDOW request to activate a window. The default is doFocus which focuses the window immediately, switching workspace if necessary. doAskUrgent is a less intrusive alternative."
2022-03-28 05:15:45 +0200 <abastro[m]> Oh, I see. That might work
2022-03-28 05:16:17 +0200 <fizzie> That doesn't sound exactly the same, though, since it would switch to the workspace of the window, rather than bringing the window to your current workspace. (Which would probably work even worse with a scratchpad, because the NSP workspace isn't one you'd want to visit normally.)
2022-03-28 05:17:23 +0200 <abastro[m]> Ouch
2022-03-28 05:18:46 +0200 <abastro[m]> Actually, I think what is happening is that the window closes itself and spawns again when alert comes
2022-03-28 05:18:55 +0200 <abastro[m]> Then it spawns at the current workspace
2022-03-28 05:51:06 +0200 <abastro[m]> Could you guys identify what capabilities are missing here other than named scratchpads?
2022-03-28 05:51:06 +0200 <abastro[m]> https://github.com/Abastro/.xmonad/blob/master/app/Main.hs
2022-03-28 06:35:49 +0200thaumavorio(~thaumavor@thaumavor.io) (*.net *.split)
2022-03-28 06:35:49 +0200amenonsen(~amenonsen@pitta.toroid.org) (*.net *.split)
2022-03-28 06:35:49 +0200koluacik(~koluacik@165.227.171.188) (*.net *.split)
2022-03-28 06:35:49 +0200codedmart_(~codedmart@li335-49.members.linode.com) (*.net *.split)
2022-03-28 06:36:06 +0200codedmart(~codedmart@li335-49.members.linode.com)
2022-03-28 06:36:28 +0200thaumavorio(~thaumavor@thaumavor.io)
2022-03-28 06:37:04 +0200amenonsen(~amenonsen@pitta.toroid.org)
2022-03-28 06:38:45 +0200koluacik(~koluacik@165.227.171.188)
2022-03-28 07:32:38 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Ping timeout: 272 seconds)
2022-03-28 07:33:19 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 07:58:00 +0200 <abastro[m]> Hm, named scratchpad just brings the app to my current workspace? Eh..
2022-03-28 08:12:01 +0200 <Solid[m]> yes
2022-03-28 08:12:23 +0200 <Solid[m]> quite useful for email, calendars and the like (at least imnsho)
2022-03-28 08:13:30 +0200 <Solid[m]> > Could you guys identify what capabilities are missing here other than named scratchpads?
2022-03-28 08:13:30 +0200 <Solid[m]> The only capabilities missing are those that _you_ are missing :)
2022-03-28 08:13:32 +0200 <lambdabot> <hint>:1:89: error:
2022-03-28 08:13:32 +0200 <lambdabot> parse error (possibly incorrect indentation or mismatched brackets)
2022-03-28 08:13:46 +0200 <Solid[m]> oh shush, you
2022-03-28 08:16:53 +0200Czernobog(~Czernobog@user/czernobog) (Quit: ZNC 1.8.2 - https://znc.in)
2022-03-28 08:18:46 +0200Czernobog(~Czernobog@user/czernobog)
2022-03-28 08:27:35 +0200benin(~benin@183.82.24.110)
2022-03-28 08:43:30 +0200 <abastro[m]> Wdym I am missing?
2022-03-28 08:43:43 +0200steve_(~steve@ool-182c2b80.dyn.optonline.net)
2022-03-28 08:44:41 +0200benin(~benin@183.82.24.110) (Quit: The Lounge - https://thelounge.chat)
2022-03-28 08:47:02 +0200 <Solid[m]> In the sense of "I wish I could do X"
2022-03-28 08:47:24 +0200 <abastro[m]> Oh, I mean, one could see it and think "Wow how could they live without X"
2022-03-28 08:49:43 +0200 <abastro[m]> (Btw it does seem inefficient to take terminal)
2022-03-28 08:56:20 +0200cfricke(~cfricke@user/cfricke)
2022-03-28 09:04:49 +0200 <Solid> to take terminal?
2022-03-28 09:06:55 +0200 <abastro[m]> I meant having terminal at named scratchpad
2022-03-28 09:07:21 +0200 <abastro[m]> Usually I like to create multiple terminals
2022-03-28 09:11:28 +0200 <Solid> you could dedicate it to a certain long-running purpose
2022-03-28 09:11:44 +0200 <Solid> e.g. I like to connect to my VPS in a scratchpad terminal when I need that
2022-03-28 09:14:10 +0200 <abastro[m]> VPS?
2022-03-28 09:14:51 +0200 <abastro[m]> Btw then I cannot have multiple instances of the terminal, can I?
2022-03-28 09:15:39 +0200 <Solid> I mean, you could have mutliple terminal scratchpads bound to different keys or something
2022-03-28 09:15:58 +0200 <Solid> but that's usually not worth it imo
2022-03-28 09:15:59 +0200 <Solid> VPS = virtual private server
2022-03-28 09:16:34 +0200 <abastro[m]> I see, private server sounds cool
2022-03-28 09:17:43 +0200 <abastro[m]> Multiple terminal scratchpad? Wouldn't they collide each other
2022-03-28 09:18:42 +0200 <Solid> not if you set a different instance name or something
2022-03-28 09:18:51 +0200 <Solid> most terminal emulators can do this
2022-03-28 09:19:46 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:46 +0200Tisoxin(~ikosit@user/ikosit) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:46 +0200unclechu(~unclechu@2001:470:69fc:105::354) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:46 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:47 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:47 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:47 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:47 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:47 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:48 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:48 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:48 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:49 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:49 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:50 +0200ilmu[m]1(~ilmumatri@2001:470:69fc:105::1:ce46) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:50 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:50 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:51 +0200sibi(~sibi@2001:470:69fc:105::8ab) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:51 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:52 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:54 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:54 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:55 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:55 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:56 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:56 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:56 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:56 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200mc47[m](~mc47matri@2001:470:69fc:105::733) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200Ether[m]1(~etherrorc@2001:470:69fc:105::1:e66e) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200liskin[m](~liskinmat@2001:470:69fc:105::768) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:57 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:58 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:58 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:58 +0200iffsid(~iffsid@2001:470:69fc:105::a3e) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:58 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:19:58 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae) (Quit: Bridge terminating on SIGTERM)
2022-03-28 09:23:54 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d)
2022-03-28 09:25:46 +0200sibi(~sibi@2001:470:69fc:105::8ab)
2022-03-28 09:29:16 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119)
2022-03-28 09:29:16 +0200 <abastro[m]> Oh, I see - interesting!
2022-03-28 09:31:41 +0200unclechu(~unclechu@2001:470:69fc:105::354)
2022-03-28 09:31:41 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f)
2022-03-28 09:31:41 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36)
2022-03-28 09:31:41 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6)
2022-03-28 09:31:41 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48)
2022-03-28 09:31:41 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca)
2022-03-28 09:31:41 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286)
2022-03-28 09:31:41 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7)
2022-03-28 09:31:41 +0200iffsid(~iffsid@2001:470:69fc:105::a3e)
2022-03-28 09:31:42 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7)
2022-03-28 09:31:42 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382)
2022-03-28 09:31:42 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318)
2022-03-28 09:31:42 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6)
2022-03-28 09:31:42 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f)
2022-03-28 09:31:51 +0200mc47(~mc47@xmonad/TheMC47)
2022-03-28 09:31:53 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49)
2022-03-28 09:31:53 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1)
2022-03-28 09:31:53 +0200ilmu[m](~ilmumatri@2001:470:69fc:105::1:ce46)
2022-03-28 09:31:53 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db)
2022-03-28 09:31:53 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af)
2022-03-28 09:31:53 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3)
2022-03-28 09:31:53 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475)
2022-03-28 09:31:53 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0)
2022-03-28 09:31:53 +0200mc47[m](~mc47matri@2001:470:69fc:105::733)
2022-03-28 09:31:53 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba)
2022-03-28 09:31:53 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7)
2022-03-28 09:31:54 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f)
2022-03-28 09:31:54 +0200Ether[m](~etherrorc@2001:470:69fc:105::1:e66e)
2022-03-28 09:31:54 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd)
2022-03-28 09:31:54 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3)
2022-03-28 09:31:54 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0)
2022-03-28 09:31:54 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3)
2022-03-28 09:31:54 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c)
2022-03-28 09:31:55 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097)
2022-03-28 09:31:55 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae)
2022-03-28 09:31:55 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09)
2022-03-28 09:41:27 +0200Tisoxin(~ikosit@user/ikosit)
2022-03-28 09:41:27 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d)
2022-03-28 09:41:39 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84)
2022-03-28 09:42:21 +0200mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2022-03-28 09:45:04 +0200dschrempf(~dominik@070-207.dynamic.dsl.fonira.net)
2022-03-28 09:48:55 +0200dschrempf(~dominik@070-207.dynamic.dsl.fonira.net) (Client Quit)
2022-03-28 11:16:21 +0200dschrempf(~dominik@070-207.dynamic.dsl.fonira.net)
2022-03-28 11:46:39 +0200benin(~benin@183.82.24.110)
2022-03-28 12:03:42 +0200dschrempf(~dominik@070-207.dynamic.dsl.fonira.net) (Quit: WeeChat 3.4.1)
2022-03-28 12:12:23 +0200mc47(~mc47@xmonad/TheMC47)
2022-03-28 12:38:11 +0200 <Ether[m]> Can someone help me out?
2022-03-28 12:38:27 +0200 <Ether[m]> https://github.com/Ahanaf-Ether/xmonad/blob/main/xmonad.hs
2022-03-28 12:38:39 +0200 <Ether[m]> It doesn't seem to work :(
2022-03-28 12:55:36 +0200 <byorgey> Ether[m]: can you be more specific?
2022-03-28 12:55:49 +0200liskin[m](~liskinmat@2001:470:69fc:105::768)
2022-03-28 13:01:14 +0200 <Solid> Ether[m]: I would still advise you to go through the tutorial ( https://xmonad.org/TUTORIAL.html ) and build things up bit by bit instead of trying to brute-forcing your way through a 600 line config
2022-03-28 13:04:28 +0200 <abastro[m]> Wouldn't that be quite a work though
2022-03-28 13:05:03 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d) (Quit: User was banned)
2022-03-28 13:05:04 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6) (Quit: User was banned)
2022-03-28 13:05:12 +0200Tisoxin(~ikosit@user/ikosit) (Quit: User was banned)
2022-03-28 13:05:17 +0200unclechu(~unclechu@2001:470:69fc:105::354) (Quit: User was banned)
2022-03-28 13:05:18 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48) (Quit: User was banned)
2022-03-28 13:05:20 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36) (Quit: User was banned)
2022-03-28 13:05:40 +0200sibi(~sibi@2001:470:69fc:105::8ab) (Quit: User was banned)
2022-03-28 13:05:41 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286) (Quit: User was banned)
2022-03-28 13:05:43 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7) (Quit: User was banned)
2022-03-28 13:05:44 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318) (Quit: User was banned)
2022-03-28 13:05:46 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca) (Quit: User was banned)
2022-03-28 13:05:46 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119) (Quit: User was banned)
2022-03-28 13:05:49 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f) (Quit: User was banned)
2022-03-28 13:06:45 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f) (Quit: User was banned)
2022-03-28 13:06:45 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7) (Quit: User was banned)
2022-03-28 13:06:45 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382) (Quit: User was banned)
2022-03-28 13:06:45 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6) (Quit: User was banned)
2022-03-28 13:06:48 +0200iffsid(~iffsid@2001:470:69fc:105::a3e) (Quit: User was banned)
2022-03-28 13:06:54 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097) (Quit: User was banned)
2022-03-28 13:06:54 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba) (Quit: User was banned)
2022-03-28 13:06:54 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af) (Quit: User was banned)
2022-03-28 13:06:54 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae) (Quit: User was banned)
2022-03-28 13:06:54 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475) (Quit: User was banned)
2022-03-28 13:06:54 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db) (Quit: User was banned)
2022-03-28 13:06:54 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3) (Quit: User was banned)
2022-03-28 13:06:54 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd) (Quit: User was banned)
2022-03-28 13:06:54 +0200ilmu[m](~ilmumatri@2001:470:69fc:105::1:ce46) (Quit: User was banned)
2022-03-28 13:06:54 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c) (Quit: User was banned)
2022-03-28 13:06:54 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09) (Quit: User was banned)
2022-03-28 13:06:54 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1) (Quit: User was banned)
2022-03-28 13:06:54 +0200mc47[m](~mc47matri@2001:470:69fc:105::733) (Quit: User was banned)
2022-03-28 13:06:54 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0) (Quit: User was banned)
2022-03-28 13:06:54 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0) (Quit: User was banned)
2022-03-28 13:06:54 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7) (Quit: User was banned)
2022-03-28 13:06:54 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49) (Quit: User was banned)
2022-03-28 13:06:55 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f) (Quit: User was banned)
2022-03-28 13:06:55 +0200Ether[m](~etherrorc@2001:470:69fc:105::1:e66e) (Quit: User was banned)
2022-03-28 13:06:55 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3) (Quit: User was banned)
2022-03-28 13:06:55 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3) (Quit: User was banned)
2022-03-28 13:06:58 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d) (Quit: User was banned)
2022-03-28 13:07:46 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84) (Quit: User was banned)
2022-03-28 13:07:49 +0200liskin[m](~liskinmat@2001:470:69fc:105::768) (Quit: User was banned)
2022-03-28 13:46:12 +0200mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2022-03-28 13:52:10 +0200Ether[m](~etherrorc@2001:470:69fc:105::1:e66e)
2022-03-28 13:52:10 +0200 <Ether[m]> Solid i tried it already:( its not nearly as close to explainig what i want.
2022-03-28 13:52:18 +0200 <Ether[m]> Its meant give 'new' users an idea of a basic config.
2022-03-28 13:53:01 +0200 <Ether[m]> Though its helpful to get you start ed.
2022-03-28 13:53:10 +0200 <Ether[m]> s/start ed/started/
2022-03-28 13:53:36 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119)
2022-03-28 13:53:36 +0200 <abastro[m]> I thought you were one of new users
2022-03-28 13:58:34 +0200 <Ether[m]> abastro[m]: Not really, i just suck at haskell :(
2022-03-28 13:58:59 +0200 <Ether[m]> I have used at least 5+ wondow managers!
2022-03-28 13:59:10 +0200 <abastro[m]> Perhaps xmonad is not your fit then
2022-03-28 13:59:38 +0200 <Ether[m]> Lets see; i3, bspwm, dwm, qtile, spectruwm
2022-03-28 13:59:40 +0200 <Ether[m]> Etc
2022-03-28 14:00:09 +0200 <Ether[m]> Xmonad is my fit. I just gotta learn to configure it. It does everything i want :)
2022-03-28 14:03:32 +0200 <Solid> then you are, by definition, new to xmonad ;)
2022-03-28 14:03:32 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d)
2022-03-28 14:03:35 +0200 <abastro[m]> Strange, isn't xmonad's only good at its configure-ability?
2022-03-28 14:03:44 +0200liskin[m](~liskinmat@2001:470:69fc:105::768)
2022-03-28 14:03:44 +0200unclechu(~unclechu@2001:470:69fc:105::354)
2022-03-28 14:03:44 +0200sibi(~sibi@2001:470:69fc:105::8ab)
2022-03-28 14:03:44 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f)
2022-03-28 14:03:44 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36)
2022-03-28 14:03:49 +0200 <Solid> if you have any improvements for the tutorial feel free to suggest them though!
2022-03-28 14:03:56 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84)
2022-03-28 14:03:57 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6)
2022-03-28 14:03:57 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48)
2022-03-28 14:04:09 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097)
2022-03-28 14:04:10 +0200Tisoxin(~ikosit@user/ikosit)
2022-03-28 14:04:22 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d)
2022-03-28 14:04:23 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba)
2022-03-28 14:04:37 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475)
2022-03-28 14:04:50 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af)
2022-03-28 14:05:02 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae)
2022-03-28 14:05:14 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db)
2022-03-28 14:05:28 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3)
2022-03-28 14:05:40 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd)
2022-03-28 14:05:41 +0200 <Ether[m]> abastro[m]: No comment;(
2022-03-28 14:05:48 +0200 <Ether[m]> * No comment ;(
2022-03-28 14:05:54 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c)
2022-03-28 14:06:06 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca)
2022-03-28 14:06:06 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7)
2022-03-28 14:06:09 +0200 <abastro[m]> Hmm
2022-03-28 14:06:18 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09)
2022-03-28 14:06:32 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0)
2022-03-28 14:06:44 +0200ilmu[m](~ilmumatri@2001:470:69fc:105::1:ce46)
2022-03-28 14:06:58 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286)
2022-03-28 14:07:10 +0200mc47[m](~mc47matri@2001:470:69fc:105::733)
2022-03-28 14:07:22 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7)
2022-03-28 14:07:34 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0)
2022-03-28 14:07:46 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1)
2022-03-28 14:07:58 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49)
2022-03-28 14:08:12 +0200iffsid(~iffsid@2001:470:69fc:105::a3e)
2022-03-28 14:08:12 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382)
2022-03-28 14:08:24 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f)
2022-03-28 14:08:24 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318)
2022-03-28 14:08:36 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f)
2022-03-28 14:08:36 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6)
2022-03-28 14:08:37 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3)
2022-03-28 14:08:52 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3)
2022-03-28 14:09:04 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7)
2022-03-28 14:21:52 +0200 <geekosaur> I, uh, think that didn't come out the way you intended it
2022-03-28 14:31:08 +0200 <abastro[m]> How did it came out?
2022-03-28 14:32:09 +0200 <abastro[m]> Oh, I'm sorry for being slightly derogatory towards xmonad
2022-03-28 14:47:09 +0200liskin[m](~liskinmat@2001:470:69fc:105::768) (Quit: You have been kicked for being idle)
2022-03-28 14:47:19 +0200unclechu(~unclechu@2001:470:69fc:105::354) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:19 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200sibi(~sibi@2001:470:69fc:105::8ab) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200Ether[m](~etherrorc@2001:470:69fc:105::1:e66e) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200mc47[m](~mc47matri@2001:470:69fc:105::733) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200Tisoxin(~ikosit@user/ikosit) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200ilmu[m](~ilmumatri@2001:470:69fc:105::1:ce46) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:47:20 +0200iffsid(~iffsid@2001:470:69fc:105::a3e) (Quit: Bridge terminating on SIGTERM)
2022-03-28 14:49:03 +0200VarikValefor[m](~varikvale@2001:470:69fc:105::a5d)
2022-03-28 14:49:54 +0200abastro[m](~abastroma@2001:470:69fc:105::1:e119)
2022-03-28 14:49:55 +0200 <abastro[m]> * ;; I'm sorry for being slightly derogatory towards xmonad
2022-03-28 14:50:59 +0200sibi(~sibi@2001:470:69fc:105::8ab)
2022-03-28 14:51:32 +0200 <Solid> oh interesting, the bridge seems to have some problems
2022-03-28 14:51:43 +0200 <Solid> some messages go missing, that is
2022-03-28 14:51:44 +0200liskin[m](~liskinmat@2001:470:69fc:105::768)
2022-03-28 14:51:44 +0200unclechu(~unclechu@2001:470:69fc:105::354)
2022-03-28 14:51:45 +0200Solid[m](~slot-matr@2001:470:69fc:105::1:a84)
2022-03-28 14:51:45 +0200Tisoxin(~ikosit@user/ikosit)
2022-03-28 14:51:57 +0200JosEduardo[m](~joseemdsm@2001:470:69fc:105::ce1d)
2022-03-28 14:51:57 +0200Yehoshua(~yehoshua@2001:470:69fc:105::1:593f)
2022-03-28 14:51:57 +0200Drishal[m](~drishalma@2001:470:69fc:105::a36)
2022-03-28 14:51:57 +0200yuu[m](~yuumatrix@2001:470:69fc:105::8a6)
2022-03-28 14:51:57 +0200ms[m](~msmatrixp@2001:470:69fc:105::2b48)
2022-03-28 14:52:08 +0200 <Solid[m]> <etherror_code_404[m]> "I have used at least 5+ wondow..." <- Then you are, by definition, new to xmonad ;)
2022-03-28 14:52:09 +0200eayavas[m](~eayavasma@2001:470:69fc:105::3097)
2022-03-28 14:52:21 +0200narendranath344[(~narendran@2001:470:69fc:105::1:62ba)
2022-03-28 14:52:35 +0200dsnix[m](~dsnixmatr@2001:470:69fc:105::1:e475)
2022-03-28 14:52:47 +0200dissociate[m](~jessehorn@2001:470:69fc:105::1:41af)
2022-03-28 14:52:59 +0200pentagrade[m](~pentagrad@2001:470:69fc:105::1:e4ae)
2022-03-28 14:53:11 +0200butterfly[m](~butterfly@2001:470:69fc:105::1:70db)
2022-03-28 14:53:19 +0200 <Solid[m]> If you have any improvements for the tutorial feel free to suggest them though!
2022-03-28 14:53:26 +0200AngryBromide[m](~angrybrom@2001:470:69fc:105::1:cfb3)
2022-03-28 14:53:46 +0200ctx[m](~ctxkungfu@2001:470:69fc:105::1:95dd)
2022-03-28 14:54:03 +0200triumphofdeath[m(~triumphof@2001:470:69fc:105::a5c)
2022-03-28 14:54:04 +0200GustavoNasciment(~gutsvaomm@2001:470:69fc:105::1:cfca)
2022-03-28 14:54:19 +0200 <geekosaur> note that starting from someone else's config does not make you an instant expert. it's still worth going through the tutorial to learn how things fit together, which neither distrotube nor a haskell tutorial will teach you
2022-03-28 14:54:23 +0200jkaye[m](~jkayematr@2001:470:69fc:105::1:86f7)
2022-03-28 14:54:25 +0200M-elo-[m](~gilganixm@2001:470:69fc:105::3d09)
2022-03-28 14:54:45 +0200HAL[m](~evadk8mat@2001:470:69fc:105::3ed0)
2022-03-28 14:55:01 +0200ilmu[m](~ilmumatri@2001:470:69fc:105::1:ce46)
2022-03-28 14:55:05 +0200neopenk[m](~neopenkma@2001:470:69fc:105::1:6286)
2022-03-28 14:55:21 +0200mc47[m](~mc47matri@2001:470:69fc:105::733)
2022-03-28 14:55:35 +0200M5271[m](~fivetwose@2001:470:69fc:105::1:d0e7)
2022-03-28 14:55:37 +0200 <Solid> indeed
2022-03-28 14:55:49 +0200lyiriyah[m](~lyiriyahm@2001:470:69fc:105::cc0)
2022-03-28 14:55:57 +0200chomwitt(~chomwitt@2a02:587:dc18:da00:e2ec:eb52:4039:9bfe) (Ping timeout: 256 seconds)
2022-03-28 14:56:01 +0200kwer[m](~kwermatri@2001:470:69fc:105::1:4da1)
2022-03-28 14:56:05 +0200chomwitt(~chomwitt@athedsl-352218.home.otenet.gr)
2022-03-28 14:56:15 +0200pyriphlegeton[m](~pyriphleg@2001:470:69fc:105::1:1f49)
2022-03-28 14:56:29 +0200iffsid(~iffsid@2001:470:69fc:105::a3e)
2022-03-28 14:56:43 +0200ArshiaAghaei[m](~arshiaagh@2001:470:69fc:105::1:c382)
2022-03-28 14:56:55 +0200joukokar[m](~joukokarm@2001:470:69fc:105::3a2f)
2022-03-28 14:57:07 +0200Ether[m](~etherrorc@2001:470:69fc:105::1:e66e)
2022-03-28 14:57:07 +0200Ash[m](~signal-wa@2001:470:69fc:105::1:2318)
2022-03-28 14:57:08 +0200CodeBitCookie[m](~code-bit-@2001:470:69fc:105::a2f)
2022-03-28 14:57:15 +0200corisco[m](~coriscokd@2001:470:69fc:105::1:dea6)
2022-03-28 14:57:27 +0200amnesia1011011[m(~amnesia10@2001:470:69fc:105::1:dec3)
2022-03-28 14:57:40 +0200Tin[m](~tinmatrix@2001:470:69fc:105::1:4fb3)
2022-03-28 14:57:40 +0200JaredMohammed[m](~librejare@2001:470:69fc:105::1:83b7)
2022-03-28 15:12:46 +0200chomwitt(~chomwitt@athedsl-352218.home.otenet.gr) (Read error: Connection reset by peer)
2022-03-28 16:06:18 +0200 <Ether[m]> geekosaur can you check the EventLogHook update?
2022-03-28 16:10:08 +0200 <Ether[m]> I figured it :)
2022-03-28 16:10:31 +0200 <Ether[m]> myStartupHook and Eventlog hook conflict each other!
2022-03-28 16:13:08 +0200 <geekosaur> I'm kinda in and out today, sorry
2022-03-28 16:13:23 +0200 <geekosaur> and it's harder for me to test the stuff I do via PR
2022-03-28 16:14:52 +0200 <Ether[m]> Okie :) Thanks
2022-03-28 16:15:28 +0200 <geekosaur> did you actually solve it? if not, pleasepoint me at your xmonad.hs again so I can copy and test it
2022-03-28 16:16:07 +0200geekosauris trying to migrate back from laptop to desktop again, it's taking some work
2022-03-28 16:25:11 +0200cfricke(~cfricke@user/cfricke) (Quit: WeeChat 3.4.1)
2022-03-28 16:31:03 +0200mc47(~mc47@xmonad/TheMC47)
2022-03-28 16:32:59 +0200 <abastro[m]> So I put it up on reddit, asking here as well because I could expect more live feedback:
2022-03-28 16:32:59 +0200 <abastro[m]> I faced with a strange phenomenon where xmonad shows normal behavior on first startup but it stops workinf after restart via mod+q. The activated app usually bring the app's workspace on focus, right? It stops working after restart. Do any of you know why?
2022-03-28 16:33:47 +0200 <abastro[m]> Basically, 'focus to urgent app' stops working after mod+q restart
2022-03-28 16:35:16 +0200 <Ether[m]> <geekosaur> "did you actually solve it? if..." <- Its the same one you made
2022-03-28 16:35:29 +0200 <Ether[m]> * Its the same one you made a PR yesterday*
2022-03-28 16:35:43 +0200 <geekosaur> but I don't havre that any more and would have tosearch the logs to find it
2022-03-28 16:36:08 +0200 <Ether[m]> Have what?
2022-03-28 16:36:20 +0200 <Ether[m]> https://github.com/Ahanaf-Ether/xmonad/blob/main/xmonad.hs
2022-03-28 16:36:27 +0200 <Ether[m]> Its still this*
2022-03-28 16:36:33 +0200 <Ether[m]> xmonad.hs
2022-03-28 16:37:16 +0200 <geekosaur> yeh, I found it in scrollback
2022-03-28 16:38:00 +0200 <geekosaur> ok, I get two errors, one of which isa typo and the other is a missed import update
2022-03-28 16:38:56 +0200 <Ether[m]> How do i fix it?
2022-03-28 16:39:12 +0200 <Ether[m]> But the eventhook doesn't work in this confif
2022-03-28 16:39:14 +0200 <Ether[m]> Config*
2022-03-28 16:41:11 +0200 <geekosaur> anmd then missing all the $s so it doesn't combine right
2022-03-28 16:43:49 +0200 <Ether[m]> If you get time can you make a PR?
2022-03-28 16:45:22 +0200 <geekosaur> I did. now that I'm up here for a bit I can dothis until I get down on the floor again to work on setting up the desktop. (I'm getting old…)
2022-03-28 16:48:19 +0200 <Ether[m]> Oo
2022-03-28 16:49:27 +0200 <Ether[m]> Holy shit! It works!
2022-03-28 16:52:19 +0200 <Ether[m]> I had done something similar but incomplete; in "MystartUpHook" another do block, just replaced "spawn" with polybar hook lines. Now that works but window spawning becomes an issue.
2022-03-28 16:52:49 +0200 <Ether[m]> Thanks to you! It is just what i wanted :)
2022-03-28 17:56:18 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2022-03-28 17:57:58 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 18:00:06 +0200liskin[m](~liskinmat@2001:470:69fc:105::768) (Quit: You have been kicked for being idle)
2022-03-28 19:15:44 +0200twiclo(~twiclo@vpn.utahbroadband.com)
2022-03-28 19:23:25 +0200noex(~null@user/noex) (Ping timeout: 256 seconds)
2022-03-28 19:24:17 +0200noex(~null@user/noex)
2022-03-28 20:00:24 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2022-03-28 20:00:24 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2022-03-28 20:00:33 +0200allbery_bgeekosaur
2022-03-28 20:00:49 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2022-03-28 20:00:49 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2022-03-28 20:00:52 +0200allbery_bgeekosaur
2022-03-28 20:01:14 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2022-03-28 20:01:14 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2022-03-28 20:01:17 +0200allbery_bgeekosaur
2022-03-28 20:01:39 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2022-03-28 20:01:39 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2022-03-28 20:01:42 +0200allbery_bgeekosaur
2022-03-28 20:02:03 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2022-03-28 20:02:03 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2022-03-28 20:02:03 +0200allbery_b(~geekosaur@xmonad/geekosaur) (K-Lined)
2022-03-28 20:02:31 +0200mvk(~mvk@2607:fea8:5cc3:7e00::7980) (Ping timeout: 256 seconds)
2022-03-28 20:20:26 +0200jimr(~jimr@2603-7080-7640-b000-0000-0000-0000-0003.res6.spectrum.com)
2022-03-28 20:22:33 +0200jimr(~jimr@2603-7080-7640-b000-0000-0000-0000-0003.res6.spectrum.com) (Remote host closed the connection)
2022-03-28 20:37:52 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 20:38:41 +0200jimr(~jimr@2603-7080-7640-b000-0000-0000-0000-0001.res6.spectrum.com)
2022-03-28 20:39:58 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Client Quit)
2022-03-28 20:54:45 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 20:55:16 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2022-03-28 20:57:22 +0200jimr(~jimr@2603-7080-7640-b000-0000-0000-0000-0001.res6.spectrum.com) (Quit: Leaving)
2022-03-28 21:08:58 +0200benin(~benin@183.82.24.110) (Ping timeout: 246 seconds)
2022-03-28 21:11:04 +0200steve_(~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 246 seconds)
2022-03-28 21:12:07 +0200benin(~benin@183.82.24.110)
2022-03-28 21:24:09 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 21:32:58 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Quit: Leaving)
2022-03-28 21:42:00 +0200mvk(~mvk@2607:fea8:5cc3:7e00::7980)
2022-03-28 21:51:47 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2022-03-28 22:10:16 +0200Hash(~Hash@hey.howstoned.ru)
2022-03-28 22:29:18 +0200steve_(~steve@ool-182c2b80.dyn.optonline.net)
2022-03-28 22:31:58 +0200mvk(~mvk@2607:fea8:5cc3:7e00::7980) (Ping timeout: 260 seconds)
2022-03-28 22:35:46 +0200tdammers(~tdammers@77.109.72.177.res.static.edpnet.net)
2022-03-28 22:38:01 +0200 <tdammers> hi! I'm having a weird issue with Pianoteq on XMonad. It's oddly specific, so bear with me. The Pianoteq plugin has an instrument selector dropdown; that dropdown renders fine intially, but when I run Pianoteq as a VST or LV2 plugin from within Ardour, the dropdown disappears when I hover over it; the standalone version works fine though. I've also tested in Xfce, and the problem does not occur
2022-03-28 22:38:03 +0200 <tdammers> there.
2022-03-28 22:38:13 +0200liskin[m](~liskinmat@2001:470:69fc:105::768)
2022-03-28 22:43:31 +0200haskl(~haskl@user/haskl) (Ping timeout: 260 seconds)
2022-03-28 22:46:26 +0200haskl(~haskl@user/haskl)
2022-03-28 23:19:03 +0200Guest80(~Guest80@69.5.218.8)
2022-03-28 23:20:27 +0200Guest80(~Guest80@69.5.218.8) (Client Quit)
2022-03-28 23:28:42 +0200mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2022-03-28 23:40:16 +0200mvk(~mvk@2607:fea8:5cc3:7e00::7980)
2022-03-28 23:51:32 +0200Guest80(~Guest80@69.5.218.8)
2022-03-28 23:52:12 +0200Guest8029(~Guest80@69.5.218.8)
2022-03-28 23:56:30 +0200Guest80(~Guest80@69.5.218.8) (Ping timeout: 250 seconds)