2025/01/19

2025-01-19 03:30:01 +0100catman(~catman@user/catman) (Quit: WeeChat 4.5.1)
2025-01-19 03:33:13 +0100catman(~catman@user/catman) catman
2025-01-19 04:09:45 +0100alp(~alp@2001:861:8ca0:4940:88c9:4a0c:8072:846f) (Ping timeout: 246 seconds)
2025-01-19 04:42:13 +0100terrorjack45(~terrorjac@2a01:4f8:c17:a66e::) (Quit: The Lounge - https://thelounge.chat)
2025-01-19 04:45:10 +0100terrorjack45(~terrorjac@2a01:4f8:c17:a66e::) terrorjack
2025-01-19 04:45:43 +0100ft(~ft@p4fc2a354.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
2025-01-19 04:52:01 +0100ft(~ft@p4fc2ad26.dip0.t-ipconnect.de) ft
2025-01-19 08:29:31 +0100ft(~ft@p4fc2ad26.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
2025-01-19 08:31:36 +0100ft(~ft@p3e9bcbb4.dip0.t-ipconnect.de) ft
2025-01-19 09:32:21 +0100ft(~ft@p3e9bcbb4.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
2025-01-19 09:39:16 +0100ft(~ft@p3e9bc727.dip0.t-ipconnect.de) ft
2025-01-19 10:04:55 +0100ft(~ft@p3e9bc727.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
2025-01-19 10:11:20 +0100ft(~ft@p508db21c.dip0.t-ipconnect.de) ft
2025-01-19 10:38:49 +0100Digitteknohippie(~user@user/digit) Digit
2025-01-19 10:39:58 +0100Digit(~user@user/digit) (Ping timeout: 252 seconds)
2025-01-19 11:37:58 +0100alp(~alp@2001:861:8ca0:4940:885e:f93c:1500:2237)
2025-01-19 11:56:24 +0100srk(~sorki@user/srk) (Ping timeout: 260 seconds)
2025-01-19 11:57:15 +0100srk(~sorki@user/srk) srk
2025-01-19 12:25:26 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) ash3en
2025-01-19 12:30:12 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Ping timeout: 265 seconds)
2025-01-19 12:46:45 +0100DigitteknohippieDigit
2025-01-19 13:10:41 +0100ChubaDuba(~ChubaDuba@46.147.210.74) ChubaDuba
2025-01-19 13:53:56 +0100ChubaDuba(~ChubaDuba@46.147.210.74) (Quit: WeeChat 4.5.1)
2025-01-19 16:12:46 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) ash3en
2025-01-19 17:26:57 +0100alp(~alp@2001:861:8ca0:4940:885e:f93c:1500:2237) (Ping timeout: 252 seconds)
2025-01-19 18:07:58 +0100catman(~catman@user/catman) (Quit: WeeChat 4.5.1)
2025-01-19 18:09:49 +0100catman(~catman@user/catman) catman
2025-01-19 18:20:08 +0100catman_(~catman@user/catman) catman
2025-01-19 18:20:18 +0100catmanGuest7456
2025-01-19 18:20:18 +0100Guest7456(~catman@user/catman) (Killed (tantalum.libera.chat (Nickname regained by services)))
2025-01-19 18:20:18 +0100catman_catman
2025-01-19 19:11:03 +0100alp(~alp@2001:861:8ca0:4940:604c:d3ad:b92c:bc11)
2025-01-19 21:13:16 +0100 <haskellbridge> <rascasse> Hi, what's the right haskell way to write this:
2025-01-19 21:13:16 +0100 <haskellbridge> ("M-g", (toggleScreenSpacingEnabled "AND" toggleWindowSpacingEnabled))
2025-01-19 21:13:56 +0100 <L29Ah> s,"AND",>>,
2025-01-19 21:16:46 +0100 <haskellbridge> <rascasse> thx! But just figured out calling only "toggleWindowSpacingEnabled" toggle off "gaps" completely (which was Im looking for)
2025-01-19 21:20:46 +0100 <haskellbridge> <rascasse> oupsy, no I def need to call "(toggleScreenSpacingEnabled >> toggleWindowSpacingEnabled)"
2025-01-19 21:22:24 +0100 <Leary> rascasse: You can get away with using the `>>` operator to sequence the operations, but it's better to use `sendMessages [ModifyScreenBorderEnabled not, ModifyWindowBorderEnabled not]`.
2025-01-19 21:25:04 +0100 <haskellbridge> <rascasse> Hi, why that?
2025-01-19 21:26:04 +0100 <Leary> The actions individually call `sendMessage` on those messages, so xmonad will refresh twice.
2025-01-19 21:26:31 +0100 <Leary> `sendMessages` folds the changes into a single refresh
2025-01-19 21:43:54 +0100ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en)
2025-01-19 23:55:49 +0100alp(~alp@2001:861:8ca0:4940:604c:d3ad:b92c:bc11) (Ping timeout: 248 seconds)
2025-01-19 23:56:26 +0100 <haskellbridge> <rascasse> ah makes sens, thx for the info