Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→ 184,774 events total
2024-03-18 03:05:00 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 03:05:01 × tv quits (~tv@user/tv) (Ping timeout: 246 seconds)
2024-03-18 03:11:03 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 256 seconds)
2024-03-18 03:18:31 tv joins (~tv@user/tv)
2024-03-18 03:22:11 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 03:29:27 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 260 seconds)
2024-03-18 03:41:50 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 03:42:42 × terrorjack quits (~terrorjac@2a01:4f8:c17:87f8::) (Quit: The Lounge - https://thelounge.chat)
2024-03-18 03:46:42 terrorjack joins (~terrorjac@2a01:4f8:c17:87f8::)
2024-03-18 03:50:05 × td_ quits (~td@i53870920.versanet.de) (Ping timeout: 268 seconds)
2024-03-18 03:51:20 td_ joins (~td@i5387091B.versanet.de)
2024-03-18 03:53:43 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 260 seconds)
2024-03-18 03:56:56 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 06:22:46 julie_pilgrim joins (~julie_pil@user/julie-pilgrim/x-1240752)
2024-03-18 06:33:08 × julie_pilgrim quits (~julie_pil@user/julie-pilgrim/x-1240752) (Remote host closed the connection)
2024-03-18 07:50:34 julie_pilgrim joins (~julie_pil@user/julie-pilgrim/x-1240752)
2024-03-18 08:06:26 <deebo> ok after formatting the output of getCleanedScreenInfo i found the issue: https://pastebin.com/Yf3jtFm6
2024-03-18 08:06:45 <deebo> the third monitor in the list, is my laptop screen, which is actually turned off
2024-03-18 08:07:17 <deebo> so the list is: monitor1, monitor2, laptop (off), tv
2024-03-18 08:08:00 <deebo> it's also reported by xrandr
2024-03-18 08:09:58 <deebo> ok for what ever reason the laptop screen was actually on.... (docked so i don't see it), when turned off mod-r works
2024-03-18 08:57:55 × julie_pilgrim quits (~julie_pil@user/julie-pilgrim/x-1240752) (Ping timeout: 250 seconds)
2024-03-18 10:26:45 Guest1 joins (~Guest1@103.216.213.42)
2024-03-18 10:27:21 <Guest1> how to remove default keybindings? Or remove specific keys, so that they dont do anything
2024-03-18 10:28:47 <[Leary]> Guest1: https://hackage.haskell.org/package/xmonad-contrib-0.18.0/docs/XMonad-Util-EZConfig.html#v:removeKeysP
2024-03-18 10:29:56 <Guest1> Thank you!
2024-03-18 10:29:57 <Guest1> I was following the xmonad setup guide. But in xmobar, alsa is not working. It says Updating...
2024-03-18 10:30:27 <Guest1> everything else is showing but instead of volume, it says Updating...
2024-03-18 10:34:21 <Guest1> Sorry, I am new and did not properly understand the removeKeysP. Can you give example? like if I want to remove mod+space which is switch layout, what should I write?
2024-03-18 10:40:39 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 260 seconds)
2024-03-18 10:52:23 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 10:53:58 <[Leary]> Guest1: Can't help with xmobar; I've never bothered with it. Re `removeKeysP`, the docs I linked do show an example, but you'd want to replace the list comprehension at the end with: `["M-<Space>"]`.
2024-03-18 10:56:54 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 256 seconds)
2024-03-18 11:08:27 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 11:12:20 × L29Ah quits (~L29Ah@wikipedia/L29Ah) (Read error: Connection timed out)
2024-03-18 11:15:56 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 268 seconds)
2024-03-18 11:17:52 <Guest1> So is this correct:
2024-03-18 11:17:53 <Guest1> `removeKeysP` ["M-S-" ++ [n] | n <- ["M-<Space>"]]
2024-03-18 11:20:43 <[Leary]> No, that's a type error.
2024-03-18 11:20:47 <[Leary]> > ["M-S-" ++ [n] | n <- ['1'..'9']]
2024-03-18 11:20:49 <lambdabot> ["M-S-1","M-S-2","M-S-3","M-S-4","M-S-5","M-S-6","M-S-7","M-S-8","M-S-9"]
2024-03-18 11:22:01 <[Leary]> This whole thing is the "list comprehension" I mentioned; it's a shorthand for a longer list. You don't want all that, just a list literal with a single element: ... `removeKeysP` ["M-<Space>"]
2024-03-18 11:22:36 <Guest1> Ohh I get it now, I feel dump. Thanks a lot
2024-03-18 11:22:49 <Guest1> do you use a status bar? if so, which one?
2024-03-18 11:23:11 <Guest1> dumb*
2024-03-18 11:26:20 <[Leary]> Nope. I haven't felt the need for one ever since I switched to xmonad a ~decade ago.
2024-03-18 11:28:48 <Guest1> I need it mostly for battery on laptop, nm-applet is really handy, and I like to if there is any open workspace left before powering off
2024-03-18 11:29:12 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 11:35:15 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 255 seconds)
2024-03-18 11:47:52 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 11:47:59 L29Ah joins (~L29Ah@wikipedia/L29Ah)
2024-03-18 11:53:39 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 256 seconds)
2024-03-18 12:06:54 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 12:12:46 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 246 seconds)
2024-03-18 12:22:43 × L29Ah quits (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer)
2024-03-18 12:24:05 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 12:33:21 × Guest1 quits (~Guest1@103.216.213.42) (Quit: Client closed)
2024-03-18 13:08:29 L29Ah joins (~L29Ah@wikipedia/L29Ah)
2024-03-18 13:12:53 × L29Ah quits (~L29Ah@wikipedia/L29Ah) (Ping timeout: 252 seconds)
2024-03-18 13:32:35 L29Ah joins (~L29Ah@wikipedia/L29Ah)
2024-03-18 14:03:11 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 260 seconds)
2024-03-18 14:17:47 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 14:27:55 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 260 seconds)
2024-03-18 14:29:13 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 15:04:10 yaslam joins (~yaslam@user/yaslam)
2024-03-18 15:04:31 <yaslam> hi everyone, how would i make it so that i can toggle the full layout by pressing WinKey + F
2024-03-18 15:04:37 <yaslam> thanks
2024-03-18 15:05:52 <yaslam> this is my config https://bpa.st/X3AA
2024-03-18 15:15:30 × L29Ah quits (~L29Ah@wikipedia/L29Ah) (Ping timeout: 268 seconds)
2024-03-18 15:17:07 <yaslam> nevermind, i have found a way
2024-03-18 15:17:47 <geekosaur> `sendMessage (JumpToLayout "Full")` is the usual way btw
2024-03-18 15:19:47 L29Ah joins (~L29Ah@wikipedia/L29Ah)
2024-03-18 15:22:27 <yaslam> oh thanks geekosaur
2024-03-18 15:24:26 <geekosaur> there are other ways, notably see https://hackage.haskell.org/package/xmonad-contrib-0.18.0/docs/XMonad-Layout-ToggleLayouts.html
2024-03-18 15:24:59 <yaslam> nice
2024-03-18 15:30:20 × yaslam quits (~yaslam@user/yaslam) (Quit: need to logout and login)
2024-03-18 15:41:16 yaslam joins (~yaslam@user/yaslam)
2024-03-18 16:28:01 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 264 seconds)
2024-03-18 16:30:09 × catman quits (~catman@user/catman) (Quit: WeeChat 4.3.0-dev)
2024-03-18 16:32:03 catman joins (~catman@user/catman)
2024-03-18 16:35:11 defjam joins (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1)
2024-03-18 16:44:03 × yaslam quits (~yaslam@user/yaslam) (Quit: Leaving)
2024-03-18 17:02:11 <haskellbridge> <N​exilva> Hi guys. I need help. I accidentally resized the Vbox window, where Windows10 is active. I can't seem to stick it back down from a floating window to a non-floating window. When I do meta+t to stick the window, it just does a windows shortcut.
2024-03-18 17:02:31 <haskellbridge> <N​exilva> How can I send meta+t to an active windows 10 vm window, where Xmonad sees the key combination, and not windows.
2024-03-18 17:05:29 <geekosaur> shift-left alt ungrabs the keyboard iirc, then xmonad should see the key
2024-03-18 17:06:08 <geekosaur> sorry, it's control+alt
2024-03-18 17:10:06 <geekosaur> unless you've rebound the keybooard in such a way that mod-t has been lost
2024-03-18 17:19:01 × defjam quits (~defjam@2a02:c7e:2807:b900:1cf:6fdb:44e4:8ef1) (Ping timeout: 264 seconds)
2024-03-18 17:20:36 defjam joins (~defjam@2a02:c7e:2807:b900:f966:906f:65a4:1ca0)
2024-03-18 17:30:29 <haskellbridge> <N​exilva> Thank you
2024-03-18 17:52:55 kelnoky joins (~kelnoky@2a02:8108:50c0:5650::3b82)
2024-03-18 18:10:15 × L29Ah quits (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer)
2024-03-18 18:35:06 L29Ah joins (~L29Ah@wikipedia/L29Ah)
2024-03-18 18:42:47 yaslam joins (~yaslam@user/yaslam)
2024-03-18 18:44:08 × yaslam quits (~yaslam@user/yaslam) (Client Quit)
2024-03-18 18:46:07 × tv quits (~tv@user/tv) (Quit: derp)
2024-03-18 18:46:25 tv joins (~tv@user/tv)
2024-03-18 18:49:44 yaslam joins (~yaslam@user/yaslam)
2024-03-18 18:49:46 <yaslam> hi
2024-03-18 18:50:50 <yaslam> i am trying to make a keybind that toggles the fullscreen layout, geekosaur i looked at the link and i added the togglelayout thing to my config, but it doesn't work. my config is here: https://bpa.st/FYOQ

All times are in UTC.