Logs: liberachat/#xmonad
| 2023-01-04 17:39:27 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 268 seconds) |
| 2023-01-04 17:42:02 | <geekosaur> | that may also interfere with resizing |
| 2023-01-04 17:42:12 | <geekosaur> | you might want to look at DragPane instead |
| 2023-01-04 17:42:32 | <geekosaur> | sadly there's no way to make an arbitrary layout use dragging for resize |
| 2023-01-04 17:53:51 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-04 18:01:02 | × | jeeeun quits (~jeeeun@78.40.148.178) (Quit: The Lounge - https://thelounge.chat) |
| 2023-01-04 18:02:38 | → | jeeeun joins (~jeeeun@78.40.148.178) |
| 2023-01-04 18:05:51 | × | twiclo1 quits (~twiclo@2604:7b80:2000:1069:b7f9:8d7d:21a6:d077) (Ping timeout: 260 seconds) |
| 2023-01-04 18:15:43 | <a[m]1> | https://hackage.haskell.org/package/xmonad-contrib-0.17.1/docs/XMonad-Layout-MouseResizableTile.html#g:1 |
| 2023-01-04 18:15:54 | <a[m]1> | how would I set the size of the dragger? |
| 2023-01-04 18:16:09 | <a[m]1> | i forgot how constructors work |
| 2023-01-04 18:17:36 | <geekosaur> | `mouseResizableTile {draggerType = FixedDragger setGapWidthHere setDraggerWidthHere}` |
| 2023-01-04 18:21:38 | <a[m]1> | i figured it out but it does nothing |
| 2023-01-04 18:22:12 | <geekosaur> | you probably need to use mod-shift-space because the type didn't change |
| 2023-01-04 18:23:14 | <a[m]1> | eh |
| 2023-01-04 18:23:22 | <a[m]1> | it didn't do anything meaningful still |
| 2023-01-04 18:23:41 | <a[m]1> | im trying to make all the space in between my windows, the area i can grab for resizing |
| 2023-01-04 18:24:23 | <a[m]1> | https://paste.tomsmeding.com/LjUOUI3x |
| 2023-01-04 18:24:48 | <geekosaur> | you need to make the dragger width large enough to overlap both the gap width and the added gaps from `spacingWithEdge` |
| 2023-01-04 18:25:56 | <geekosaur> | so add 20 to it since you used `spacingWithEdge 10` |
| 2023-01-04 18:27:01 | <a[m]1> | no luck |
| 2023-01-04 18:28:53 | <a[m]1> | nevermind i had to use mod-shift-space like you said |
| 2023-01-04 18:29:01 | <a[m]1> | how can i make the type changed by default? |
| 2023-01-04 18:30:29 | × | jeeeun quits (~jeeeun@78.40.148.178) (Quit: The Lounge - https://thelounge.chat) |
| 2023-01-04 18:31:31 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 260 seconds) |
| 2023-01-04 18:32:03 | <geekosaur> | it will do the right thing on startup. we don't force mod-shift-space after mod-q restart because you might do things like change the number of master windows, or for that matter might have drag-resized the pane, and you would lose that as well |
| 2023-01-04 18:32:14 | <geekosaur> | xmonad can't tell the difference between those and a manual change |
| 2023-01-04 18:33:37 | → | jeeeun joins (~jeeeun@78.40.148.178) |
| 2023-01-04 18:33:37 | <a[m]1> | Oki thanks |
| 2023-01-04 18:34:04 | <a[m]1> | But I have 0 as the gap width and it still works the way I want with a dragger size of 20, why? |
| 2023-01-04 18:35:14 | <geekosaur> | that sounds like it's expected. you don't need `mouseResizableTile` to add its own gap, you're using the gap from `Spacing` |
| 2023-01-04 18:35:48 | <a[m]1> | but why cant i use a dragger size of 10 |
| 2023-01-04 18:35:52 | <geekosaur> | in the normal case (no `Spacing`) the dragger would be too thin for anyone to capture and drag if you set the gap width to 0 |
| 2023-01-04 18:35:56 | <a[m]1> | if the only gap is from the spacing |
| 2023-01-04 18:36:20 | <geekosaur> | because that would only cover half the gap. you get 10 pixels from each window |
| 2023-01-04 18:36:23 | <a[m]1> | so it defaults to 10? |
| 2023-01-04 18:36:30 | <geekosaur> | so 20 between two windows |
| 2023-01-04 18:37:01 | <a[m]1> | kay |
| 2023-01-04 18:37:30 | <geekosaur> | there are other spacing modifiers that would give you only 10 between two windows |
| 2023-01-04 18:37:38 | <geekosaur> | (see `spacingRaw`) |
| 2023-01-04 18:39:41 | <a[m]1> | okay tyvm |
| 2023-01-04 18:40:25 | <geekosaur> | anyway, if you really do want to throw the saved values away every time, add to the `startupHook`: `asks (layoutHook . config) >>= setLayout` |
| 2023-01-04 18:40:44 | <a[m]1> | would you know why that it seems setting the font for xmobar does nothing? |
| 2023-01-04 18:40:45 | <geekosaur> | which is more or less what mod-shoft-space does |
| 2023-01-04 18:40:55 | <geekosaur> | nope, I don't use xmobar |
| 2023-01-04 18:41:27 | <geekosaur> | I would guess there's something wrong with the font setting, or that you are trying to use an xft font when xmobar wasn't built with xft support |
| 2023-01-04 18:41:28 | <a[m]1> | what do you use? |
| 2023-01-04 18:41:45 | <a[m]1> | im not |
| 2023-01-04 18:41:48 | <geekosaur> | I run xmonad as window manager for MATE so I have a couple of mate-panels |
| 2023-01-04 18:41:52 | <a[m]1> | im using the pango format |
| 2023-01-04 18:41:55 | <a[m]1> | nice |
| 2023-01-04 19:02:05 | → | defjam joins (~defjam@2a02:c7e:2807:b900:3cd2:86af:2fb0:72ef) |
| 2023-01-04 19:06:59 | × | defjam quits (~defjam@2a02:c7e:2807:b900:3cd2:86af:2fb0:72ef) (Ping timeout: 260 seconds) |
| 2023-01-04 19:36:17 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-04 19:41:25 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 260 seconds) |
| 2023-01-04 20:10:26 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-04 20:28:33 | <xmonadtrack> | New xmonad-contrib branch created: pull/791 (1 commit) https://github.com/xmonad/xmonad-contrib/pull/791 |
| 2023-01-04 20:51:13 | × | cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.7.1) |
| 2023-01-04 20:52:27 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 248 seconds) |
| 2023-01-04 20:55:35 | × | mc47 quits (~mc47@xmonad/TheMC47) (Remote host closed the connection) |
| 2023-01-04 21:07:53 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-04 21:13:26 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 268 seconds) |
| 2023-01-04 21:24:30 | → | defjam joins (~defjam@2a02:c7e:2807:b900:5934:104b:eb4:4c8) |
| 2023-01-04 22:24:42 | → | rundown joins (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) |
| 2023-01-04 22:25:50 | × | defjam quits (~defjam@2a02:c7e:2807:b900:5934:104b:eb4:4c8) (Ping timeout: 246 seconds) |
| 2023-01-04 22:37:02 | rundown | is now known as defjam |
| 2023-01-04 23:38:08 | × | Maeda quits (~Maeda@91-161-10-149.subs.proxad.net) (Ping timeout: 260 seconds) |
| 2023-01-04 23:39:50 | → | Maeda joins (~Maeda@91-161-10-149.subs.proxad.net) |
| 2023-01-04 23:58:23 | × | defjam quits (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) (Ping timeout: 264 seconds) |
| 2023-01-04 23:58:31 | × | werneta quits (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Remote host closed the connection) |
| 2023-01-05 00:26:58 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-05 00:32:09 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 260 seconds) |
| 2023-01-05 00:46:20 | → | werneta joins (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) |
| 2023-01-05 01:02:06 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-05 01:06:47 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 260 seconds) |
| 2023-01-05 01:08:33 | → | minnie joins (~minnie@159.196.202.199) |
| 2023-01-05 01:14:00 | → | Guest4 joins (~Guest4@174.78.11.128) |
| 2023-01-05 01:14:24 | → | Guest44 joins (~Guest4@174.78.11.128) |
| 2023-01-05 01:14:42 | × | Guest44 quits (~Guest4@174.78.11.128) (Client Quit) |
| 2023-01-05 01:15:35 | × | Guest4 quits (~Guest4@174.78.11.128) (Client Quit) |
| 2023-01-05 01:18:18 | × | tremon quits (~tremon@83-85-213-108.cable.dynamic.v4.ziggo.nl) (Quit: getting boxed in) |
| 2023-01-05 01:37:18 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-05 01:42:06 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 255 seconds) |
| 2023-01-05 02:10:19 | → | defjam joins (~defjam@90.201.240.60) |
| 2023-01-05 02:15:36 | × | defjam quits (~defjam@90.201.240.60) (Ping timeout: 268 seconds) |
| 2023-01-05 02:47:05 | → | defjam joins (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) |
| 2023-01-05 02:51:50 | × | defjam quits (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) (Ping timeout: 246 seconds) |
| 2023-01-05 02:52:44 | × | werneta quits (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 260 seconds) |
| 2023-01-05 02:54:40 | → | werneta joins (~werneta@137.79.238.79) |
| 2023-01-05 03:03:54 | × | banc quits (banc@gateway/vpn/protonvpn/banc) (Ping timeout: 272 seconds) |
| 2023-01-05 03:12:48 | × | td_ quits (~td@83.135.9.7) (Ping timeout: 252 seconds) |
| 2023-01-05 03:14:30 | → | td_ joins (~td@83.135.9.50) |
| 2023-01-05 03:19:06 | × | werneta quits (~werneta@137.79.238.79) (Ping timeout: 272 seconds) |
| 2023-01-05 03:19:51 | → | defjam joins (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) |
| 2023-01-05 03:20:17 | → | werneta joins (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) |
| 2023-01-05 03:24:39 | → | banc joins (banc@gateway/vpn/protonvpn/banc) |
| 2023-01-05 03:24:41 | × | defjam quits (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) (Ping timeout: 255 seconds) |
| 2023-01-05 03:39:58 | × | minnie quits (~minnie@159.196.202.199) (Quit: WeeChat 3.7.1) |
| 2023-01-05 03:54:19 | → | defjam joins (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) |
| 2023-01-05 03:58:59 | × | defjam quits (~defjam@2a02:c7e:2807:b900:854b:823d:a475:490c) (Ping timeout: 246 seconds) |
All times are in UTC.