Logs: liberachat/#xmonad
| 2023-07-27 01:10:00 | <absta[m]> | Let me remove tooltip shadow. |
| 2023-07-27 01:11:09 | <absta[m]> | What is picom doing with tooltip shadow? It was the problem! |
| 2023-07-27 01:11:20 | <ChaoticMist[m]> | absta[m]: I KNEW IT!! |
| 2023-07-27 01:11:28 | <ChaoticMist[m]> | Don't know the reason though :P |
| 2023-07-27 01:12:24 | <absta[m]> | Yeah, it's weird |
| 2023-07-27 01:16:37 | <absta[m]> | What is "_NET_WM_STATE@:a *= '_NET_WM_STATE_FULLSCREEN'" for? |
| 2023-07-27 01:17:12 | <geekosaur[c]> | Matches EWMH fullscreen windows |
| 2023-07-27 01:18:22 | <absta[m]> | Ah, so removes shadowing effect when fullscreeen. |
| 2023-07-27 01:18:40 | <absta[m]> | Can I make the xmonad border thicker? It is not easily visible on the round corners |
| 2023-07-27 01:18:46 | <geekosaur[c]> | I don't want a fullscreen window to get dimmed when it loses focus |
| 2023-07-27 01:19:23 | <geekosaur[c]> | Set `borderWidth` in your config |
| 2023-07-27 01:19:56 | <absta[m]> | I see, thank you! |
| 2023-07-27 01:21:13 | <geekosaur[c]> | You can see mine on GitHub (same repo as the `compton.conf`) where I set it to 2 |
| 2023-07-27 01:23:57 | <absta[m]> | Hmm, it seems to me that interaction between the xmonad borders and picom shadow is quite glitchy |
| 2023-07-27 01:24:48 | <geekosaur[c]> | I've never found it so |
| 2023-07-27 01:25:09 | <geekosaur[c]> | But I don't use rounded borders |
| 2023-07-27 01:26:10 | <absta[m]> | I do not want to use rounded borders on tiled windows. |
| 2023-07-27 01:26:15 | <absta[m]> | Is there a way for this? |
| 2023-07-27 01:28:30 | <geekosaur[c]> | https://www.irccloud.com/pastebin/NYOZwkrd |
| 2023-07-27 01:28:48 | <geekosaur[c]> | Damn what is this thing doing |
| 2023-07-27 01:29:21 | <absta[m]> | Snippet..? |
| 2023-07-27 01:29:38 | <absta[m]> | Sad that I cannot detect tiling |
| 2023-07-27 01:29:43 | <geekosaur[c]> | I don't know why it insisted on sending it that way |
| 2023-07-27 01:31:27 | <absta[m]> | So IRC bridge did that.. huh. |
| 2023-07-27 01:31:46 | <geekosaur[c]> | Might be possible to use a hack involving TagWindows since that sets a window property you can test the same way that FULLSCREEN thing does |
| 2023-07-27 01:32:40 | <geekosaur[c]> | Set a tag on non-floating windows in the `manageHook` |
| 2023-07-27 01:33:16 | <geekosaur[c]> | There's a matcher `willFloat` |
| 2023-07-27 01:34:04 | <absta[m]> | Thanks a lot! |
| 2023-07-27 01:34:14 | <geekosaur[c]> | `fmap not willFloat --> liftX β¦` |
| 2023-07-27 01:34:27 | <geekosaur[c]> | Will have to look up the rest |
| 2023-07-27 01:36:43 | <geekosaur[c]> | The bridge didn't, the client on my phone kept sending me to a "text snippet" screen |
| 2023-07-27 01:41:31 | <geekosaur> | `fmap not willFloat --> ask >>= liftX addTag >> idHook` |
| 2023-07-27 01:41:54 | <geekosaur> | `import XMonad.Actions.TagWindows` |
| 2023-07-27 01:41:58 | <absta[m]> | Ahh |
| 2023-07-27 01:42:01 | <geekosaur> | sorry, forgot the actual tag |
| 2023-07-27 01:42:13 | <geekosaur> | `fmap not willFloat --> ask >>= liftX (addTag "tiled") >> idHook` |
| 2023-07-27 01:43:06 | absta[m] | sent a hs code block: https://libera.ems.host/_matrix/media/v3/download/libera.chat/a864a402018a28a2dc5209000ac23613f5b5e60b |
| 2023-07-27 01:45:50 | <geekosaur> | then you can use `_XMONAD_TAGS@:s *= "tiled"` in `picom.conf` |
| 2023-07-27 01:46:52 | <geekosaur> | the second one won't be useful, if you need to update it after floating/tiling then you need code in `logHook` because `manageHook` won't be rerun |
| 2023-07-27 01:48:34 | <absta[m]> | Oh, I see. Hm let me check |
| 2023-07-27 01:49:09 | <absta[m]> | xprop is not showing the properties. Isn't ManageHook apply actions from front to back? |
| 2023-07-27 01:50:16 | <geekosaur> | if you only did mod-q then existing windows won't go through the manageHook, only new ones |
| 2023-07-27 01:51:24 | <absta[m]> | What is the order ManageHook apply the hooks? Front-to-back, or back-to-front? |
| 2023-07-27 01:51:32 | <absta[m]> | Moving it to front seem to make it work. |
| 2023-07-27 01:52:08 | <geekosaur> | back to front, since it's actually functions composed with (.) which is right associative |
| 2023-07-27 01:52:43 | <absta[m]> | Oh. |
| 2023-07-27 01:52:49 | <absta[m]> | I've been doing so many things wrong.. |
| 2023-07-27 01:55:19 | <absta[m]> | Hmm this is a bit confusing though. The WindowSet modification will run back to front, while the actions would be run front-to-back. |
| 2023-07-27 01:55:41 | <geekosaur> | yes, it's rather confusing |
| 2023-07-27 01:55:57 | <[Leary]> | "welcome to xmonad" |
| 2023-07-27 01:56:03 | <geekosaur> | π |
| 2023-07-27 01:56:25 | <absta[m]> | Should I be rid of of xmonad /j |
| 2023-07-27 01:57:16 | <absta[m]> | I am so confused. Should I put this tagging action in the front (first), or in the back (last)? |
| 2023-07-27 01:57:31 | Γ | ft quits (~ft@p3e9bcc0e.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
| 2023-07-27 01:58:03 | <absta[m]> | Now floating windows are also reported as tiled.. |
| 2023-07-27 01:58:55 | β | ft joins (~ft@p3e9bc61e.dip0.t-ipconnect.de) |
| 2023-07-27 01:59:42 | <geekosaur> | how many windows to you explicitly float? `willFloat` only matches the windows that xmonad will automatically float, not ones you float in the manageHook |
| 2023-07-27 02:01:45 | <absta[m]> | Hmm, quite a bit. |
| 2023-07-27 02:02:30 | <geekosaur> | you may need to use composeOne from X.H.ManageHelpers to keep the willFloat rule from firing if another rule matches |
| 2023-07-27 02:02:31 | <absta[m]> | Does xmonad automatically float some windows? |
| 2023-07-27 02:02:41 | <geekosaur> | any window with a fixed size |
| 2023-07-27 02:03:36 | <geekosaur> | it's getting late for me⦠|
| 2023-07-27 02:05:19 | <absta[m]> | Good night! |
| 2023-07-27 02:18:35 | Γ | td_ quits (~td@i53870902.versanet.de) (Ping timeout: 264 seconds) |
| 2023-07-27 02:20:18 | β | td_ joins (~td@i5387090B.versanet.de) |
| 2023-07-27 02:24:22 | <absta[m]> | This is quite complex, perhaps I would do it later. Thanks a lot, everyone! |
| 2023-07-27 02:26:04 | Γ | Guest667 quits (~lol@211.sub-174-215-144.myvzw.com) (Ping timeout: 244 seconds) |
| 2023-07-27 02:27:31 | Γ | redgloboli quits (~redglobol@user/redgloboli) (Ping timeout: 245 seconds) |
| 2023-07-27 02:28:43 | β | redgloboli joins (~redglobol@user/redgloboli) |
| 2023-07-27 03:07:32 | β | ribosomerocker[m joins (~ribosomer@2001:470:69fc:105::3:8ac7) |
| 2023-07-27 03:13:27 | β | mvk joins (~mvk@2607:fea8:5c9a:a600::1c6d) |
| 2023-07-27 03:45:24 | Γ | mvk quits (~mvk@2607:fea8:5c9a:a600::1c6d) (Ping timeout: 260 seconds) |
| 2023-07-27 05:14:45 | β | mncheckm joins (~mncheck@193.224.205.254) |
| 2023-07-27 05:47:48 | β | terrorjack joins (~terrorjac@2a01:4f8:c17:87f8::) |
| 2023-07-27 06:14:33 | <Solid> | why is github alerting me to CVEs from 6 years ago? |
| 2023-07-27 06:14:38 | <Solid> | π |
| 2023-07-27 06:51:15 | Γ | redgloboli quits (~redglobol@user/redgloboli) (Quit: ...enter the matrix...) |
| 2023-07-27 06:52:23 | β | redgloboli joins (~redglobol@user/redgloboli) |
| 2023-07-27 07:08:00 | Γ | zawaken quits (~zawaken@user/zawaken) (Quit: ZNC - https://znc.in) |
| 2023-07-27 07:11:44 | Γ | terrorjack quits (~terrorjac@2a01:4f8:c17:87f8::) (*.net *.split) |
| 2023-07-27 07:11:44 | Γ | [Leary] quits (~Leary]@user/Leary/x-0910699) (*.net *.split) |
| 2023-07-27 07:11:44 | Γ | ChanServ quits (ChanServ@services.libera.chat) (*.net *.split) |
| 2023-07-27 07:11:44 | Γ | ft quits (~ft@p3e9bc61e.dip0.t-ipconnect.de) (*.net *.split) |
| 2023-07-27 07:11:44 | Γ | fizzie quits (irc@selene.zem.fi) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | defjam quits (~defjam@2a02:c7e:2807:b900:b0cb:18b5:60fb:5b71) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | guygastineau quits (~guygastin@137.184.131.156) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | berberman quits (~berberman@user/berberman) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | telser quits (~quassel@user/telser) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | tv quits (~tv@user/tv) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | jusa_ quits (~jusa@kraa.fi) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | zoglesby quits (f0f8ca1525@2604:bf00:561:2000::64) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | koluacik_ quits (~koluacik@165.227.171.188) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | liskin[m] quits (~liskinmat@2001:470:69fc:105::768) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | fr1d4y[m] quits (~fr1d4yenv@2001:470:69fc:105::2:ea3c) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | avesheher[m] quits (~electron2@2001:470:69fc:105::3:86b6) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | vetu_ quits (~vetu@91-156-31-97.elisa-laajakaista.fi) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | Jazzah quits (~jazz@user/jazzah) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | piele_ quits (~piele@tbonesteak.creativeserver.net) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | noze` quits (~user@2001:41d0:a:21f1::1) (*.net *.split) |
| 2023-07-27 07:11:45 | Γ | jludwig quits (~justin@li657-110.members.linode.com) (*.net *.split) |
All times are in UTC.