Logs on 2025-03-20 (liberachat/#xmonad)
| 00:17:49 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (Ping timeout: 244 seconds) |
| 00:18:57 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 00:29:42 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (Ping timeout: 244 seconds) |
| 00:31:02 | → | dibblego joins (~dibblego@116-255-1-119.ip4.superloop.au) |
| 00:31:02 | × | dibblego quits (~dibblego@116-255-1-119.ip4.superloop.au) (Changing host) |
| 00:31:02 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 00:56:09 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (Ping timeout: 268 seconds) |
| 01:17:42 | → | dibblego joins (~dibblego@116-255-1-119.ip4.superloop.au) |
| 01:17:42 | × | dibblego quits (~dibblego@116-255-1-119.ip4.superloop.au) (Changing host) |
| 01:17:42 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 01:29:59 | × | alp quits (~alp@2001:861:8ca0:4940:77c4:3560:6515:b78c) (Ping timeout: 260 seconds) |
| 03:36:36 | × | tremon quits (~tremon@83.80.159.219) (Quit: getting boxed in) |
| 07:28:02 | → | ash3en joins (~Thunderbi@ip1f10cbd6.dynamic.kabel-deutschland.de) |
| 07:39:57 | → | catman_ joins (~catman@user/catman) |
| 07:40:16 | catman | is now known as Guest4939 |
| 07:40:16 | × | Guest4939 quits (~catman@user/catman) (Killed (platinum.libera.chat (Nickname regained by services))) |
| 07:40:16 | catman_ | is now known as catman |
| 07:47:57 | × | ft quits (~ft@p508db463.dip0.t-ipconnect.de) (Quit: leaving) |
| 08:15:58 | → | Digitteknohippie joins (~user@user/digit) |
| 08:16:58 | × | Digit quits (~user@user/digit) (Ping timeout: 252 seconds) |
| 08:23:09 | × | ash3en quits (~Thunderbi@ip1f10cbd6.dynamic.kabel-deutschland.de) (Quit: ash3en) |
| 08:37:22 | → | alp joins (~alp@2001:861:8ca0:4940:17be:23b1:68c0:522c) |
| 08:41:31 | → | mc47 joins (~yecinem@p200300ee0f4f16a426d06c43f5aaeb6f.dip0.t-ipconnect.de) |
| 08:44:22 | → | ash3en joins (~Thunderbi@ip1f10cbd6.dynamic.kabel-deutschland.de) |
| 09:03:07 | → | tv joins (~tv@user/tv) |
| 09:13:11 | × | ash3en quits (~Thunderbi@ip1f10cbd6.dynamic.kabel-deutschland.de) (Ping timeout: 268 seconds) |
| 10:29:43 | Digitteknohippie | is now known as Digit |
| 10:46:01 | → | ash3en joins (~Thunderbi@2a01:780:8000:115:27a0:cdec:aee3:14b8) |
| 11:07:45 | × | ash3en quits (~Thunderbi@2a01:780:8000:115:27a0:cdec:aee3:14b8) (Ping timeout: 252 seconds) |
| 11:26:41 | × | alp quits (~alp@2001:861:8ca0:4940:17be:23b1:68c0:522c) (Ping timeout: 248 seconds) |
| 11:45:50 | → | ash3en joins (~Thunderbi@149.222.145.35) |
| 11:53:16 | × | haskellbridge quits (~hackager@syn-024-093-192-219.res.spectrum.com) (Remote host closed the connection) |
| 11:54:48 | → | haskellbridge joins (~hackager@syn-024-093-192-219.res.spectrum.com) |
| 12:55:04 | × | Leary quits (~Leary@user/Leary/x-0910699) (Read error: Connection reset by peer) |
| 12:55:24 | → | Leary joins (~Leary@user/Leary/x-0910699) |
| 13:23:50 | × | ash3en quits (~Thunderbi@149.222.145.35) (Ping timeout: 272 seconds) |
| 13:39:05 | → | ash3en joins (~Thunderbi@149.222.145.35) |
| 13:50:29 | → | tremon joins (~tremon@83.80.159.219) |
| 15:11:48 | × | ash3en quits (~Thunderbi@149.222.145.35) (Quit: ash3en) |
| 15:20:43 | <haskellbridge> | <leana8959> Is there a good way to gently flash the screen when I move a window to another workspace? |
| 15:20:43 | <haskellbridge> | Because there's no update to what I see, sometimes I wonder if I actually did it or not |
| 15:23:18 | <geekosaur> | probably something in `logHook` |
| 15:26:21 | <geekosaur> | I assume you mean in `manageHook` since I would expect it to be obvious if you moved the focused window |
| 15:27:24 | <haskellbridge> | <leana8959> What's the difference between "logHook" and "manageHook"? |
| 15:27:45 | <geekosaur> | nothing currently exists, one way to do it would be to wrap `W.shift` to set something in `XS` and check for it in a modified version of `XMonad.Hooks.ShowWName` (need latest xmonad) |
| 15:28:12 | <geekosaur> | `logHook` runs when any change to windows or workspaces happens. `manageHook` runs when new windows appear |
| 15:29:10 | <haskellbridge> | <leana8959> geekosaur: I see |
| 15:29:10 | <haskellbridge> | Though what does "XS" mean? |
| 15:30:14 | <geekosaur> | https://hackage.haskell.org/package/xmonad-contrib-0.18.1/docs/XMonad-Util-ExtensibleState.html |
| 15:31:41 | <haskellbridge> | <leana8959> Ah I see, as in managing a custom myself |
| 15:32:05 | <haskellbridge> | <leana8959> hmm I think I'll do it another day |
| 15:32:11 | <haskellbridge> | <leana8959> Thank a lot though! |
| 15:32:39 | → | ash3en joins (~Thunderbi@149.222.145.35) |
| 15:34:46 | × | ash3en quits (~Thunderbi@149.222.145.35) (Client Quit) |
| 16:49:17 | → | julie_pilgrim joins (~julie_pil@user/julie-pilgrim/x-1240752) |
| 17:04:54 | × | julie_pilgrim quits (~julie_pil@user/julie-pilgrim/x-1240752) (Ping timeout: 240 seconds) |
| 17:06:11 | × | terrorjack quits (~terrorjac@2a01:4f8:c17:9d11::) (Quit: The Lounge - https://thelounge.chat) |
| 17:07:26 | → | julie_pilgrim joins (~julie_pil@user/julie-pilgrim/x-1240752) |
| 17:14:09 | ← | L29Ah parts (~L29Ah@wikipedia/L29Ah) () |
| 17:17:18 | × | julie_pilgrim quits (~julie_pil@user/julie-pilgrim/x-1240752) (Remote host closed the connection) |
| 17:24:39 | → | terrorjack joins (~terrorjac@2a01:4f8:c17:9d11::) |
| 17:44:00 | → | ash3en joins (~Thunderbi@89.56.182.235) |
| 17:50:45 | × | mc47 quits (~yecinem@p200300ee0f4f16a426d06c43f5aaeb6f.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 18:10:41 | × | ash3en quits (~Thunderbi@89.56.182.235) (Quit: ash3en) |
| 18:39:53 | → | ft joins (~ft@p508db463.dip0.t-ipconnect.de) |
| 18:45:48 | × | Digit quits (~user@user/digit) (Ping timeout: 276 seconds) |
| 18:45:56 | × | hightower3 quits (~hightower@213.186.15.36) (Remote host closed the connection) |
| 18:59:24 | → | ash3en joins (~Thunderbi@89.56.182.235) |
| 20:18:36 | × | ash3en quits (~Thunderbi@89.56.182.235) (Quit: ash3en) |
| 20:44:31 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 21:47:48 | <L29Ah> | my script to gently flash screen: https://0x0.st/81vY.sh |
| 22:45:00 | → | abiss joins (~abiss27@190.213.236.106) |
| 22:48:50 | ← | abiss parts (~abiss27@190.213.236.106) () |
| 22:50:15 | → | abiss27 joins (~abiss27@190.213.236.106) |
| 22:52:25 | × | abiss27 quits (~abiss27@190.213.236.106) (Client Quit) |
| 22:53:06 | → | abiss27 joins (~abiss27@user/abiss) |
| 22:54:23 | × | abiss27 quits (~abiss27@user/abiss) (Client Quit) |
| 23:00:11 | → | abiss27 joins (~abiss27@190.213.236.106) |
| 23:01:17 | × | abiss27 quits (~abiss27@190.213.236.106) (Changing host) |
| 23:01:17 | → | abiss27 joins (~abiss27@user/abiss) |
| 23:04:43 | × | Buliarou1 quits (~gypsydang@46.232.210.139) (Remote host closed the connection) |
| 23:11:00 | ← | abiss27 parts (~abiss27@user/abiss) () |
| 23:11:32 | → | abiss27 joins (~abiss27@190.213.236.106) |
| 23:12:28 | × | abiss27 quits (~abiss27@190.213.236.106) (Client Quit) |
| 23:20:49 | → | abiss27 joins (~abiss27@user/abiss) |
All times are in UTC on 2025-03-20.