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