Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→
Page 1 .. 767 768 769 770 771 772 773 774 775 776 777 .. 1850
184,961 events total
2022-08-05 11:17:49 <zim0369> sorry wait
2022-08-05 11:17:53 <zim0369> i didn't read the comment
2022-08-05 11:20:04 <zim0369>       ("M-o", isScratchPad myScratchPads `thenRefocusAfter` namedScratchpadAction scratchpads "scratch"),
2022-08-05 11:20:48 <zim0369> it was `scratchpads` instead of `myScratchpads`
2022-08-05 11:20:51 <zim0369> now it works
2022-08-05 11:21:11 <zim0369> now is this line correct?
2022-08-05 11:21:12 <zim0369>       ("M-o", isScratchPad scratchpads `thenRefocusAfter` namedScratchpadAction scratchpads "scratch"),
2022-08-05 11:21:23 <[Leary]> Looks right.
2022-08-05 11:21:24 <zim0369> scratchpads appears twice
2022-08-05 11:21:29 <zim0369> but works anyways
2022-08-05 11:21:39 <[Leary]> It's an argument that both functions need.
2022-08-05 11:21:45 <zim0369> okay
2022-08-05 11:22:16 <zim0369> everything works fine now
2022-08-05 11:22:16 <[Leary]> There might be some issues if you pull up a scratch pad when another is already focused, but... I don't know what to do about that. I think it should work the rest of the time.
2022-08-05 11:22:50 <zim0369> yea i see that problem but i don't ever pull up a scratchpad on another one
2022-08-05 11:23:05 <zim0369> thank you so much
2022-08-05 11:23:09 <zim0369> that was exhaustive
2022-08-05 11:23:11 <zim0369> hehe
2022-08-05 11:23:37 <zim0369> now only thing i need in xmonad is the ability to jump to a certain layout without having to cycle through it
2022-08-05 11:23:48 <zim0369> but that's prolly not going to happen as geekosaur said
2022-08-05 11:26:03 <[Leary]> You're welcome, but there's one more thing I should mention: I noticed that you bind window-shifting keys in `myKeys`. The shift bindings in `refocusLastKeys` are actually supposed to replace those.
2022-08-05 11:27:09 <zim0369>  you mean these:
2022-08-05 11:27:10 <zim0369>       ("M-u", submap . M.fromList $
2022-08-05 11:27:11 <zim0369>         [
2022-08-05 11:27:11 <zim0369>          ((0, k), windows $ W.shift i) | (i, k) <- zip myWorkspaces [xK_1 .. xK_9]
2022-08-05 11:27:12 <zim0369>         ]),
2022-08-05 11:27:12 <zim0369>       ("M-w p", toggleRecentWS)
2022-08-05 11:27:36 <[Leary]> I guess you can replace `windows $ W.shift i` on line 190 with `windows =<< shiftRLWhen myPred i`.
2022-08-05 11:29:39 <zim0369> can you also tell me
2022-08-05 11:29:42 <zim0369> how do i append
2022-08-05 11:30:09 <zim0369> move to that workspace thing?
2022-08-05 11:30:18 <zim0369> i forgot what it was
2022-08-05 11:30:30 <[Leary]> I'm not sure what you're asking.
2022-08-05 11:30:41 <zim0369> but what it does is after i move a window to a specific workspace i also want to switch to that workspace right away
2022-08-05 11:34:29 <[Leary]> shiftRLWhen myPred i >>= \shift -> windows (W.greedyView i . shift)
2022-08-05 11:34:33 <[Leary]> Or something like that.
2022-08-05 11:34:35 <[Leary]> I guess.
2022-08-05 11:36:19 <zim0369> like this:
2022-08-05 11:36:20 <zim0369>          ((0, k), shiftRLWhen myPred i) >>= \shift -> windows (W.greedyView i . shift)
2022-08-05 11:36:22 <zim0369> ?
2022-08-05 11:36:35 <zim0369> or this maybe?
2022-08-05 11:36:36 <zim0369>          ((0, k), shiftRLWhen myPred i) >>= \shift -> windows (W.greedyView i . shift) | (i, k) <- zip myWorkspaces [xK_1 .. xK_9]
2022-08-05 11:39:47 <[Leary]> ((0, k), shiftRLWhen myPred i >>= \shift -> windows (W.greedyView i . shift))
2022-08-05 11:44:16 <zim0369> that worked!!!
2022-08-05 11:44:20 <zim0369> thank you sooo much
2022-08-05 12:21:42 × xmonadtrack quits (~xmonadtra@xmonad/geekosaur) (Ping timeout: 245 seconds)
2022-08-05 12:23:22 × geekosaur quits (~geekosaur@xmonad/geekosaur) (Ping timeout: 245 seconds)
2022-08-05 12:32:35 × zim0369 quits (~zim0369@42.107.88.1) (Quit: Client closed)
2022-08-05 13:10:15 catman joins (~catman@user/catman)
2022-08-05 13:17:26 × catman quits (~catman@user/catman) (Ping timeout: 240 seconds)
2022-08-05 13:17:37 catman joins (~catman@user/catman)
2022-08-05 13:18:23 jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)
2022-08-05 13:44:30 zim0369 joins (~zim0369@114.143.131.219)
2022-08-05 13:45:11 <zim0369> is there a way to preserve content focus while resizing the browser window?
2022-08-05 13:45:24 <zim0369> It's not an xmonad specific problem
2022-08-05 13:46:28 <zim0369> windows, tiling wm, linux DEs
2022-08-05 14:00:07 × jao quits (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 268 seconds)
2022-08-05 14:14:47 <zim0369> geekosaur[m]
2022-08-05 14:15:09 <zim0369> do you know if we can fix a browser issue
2022-08-05 14:15:25 <zim0369> when browser window is resized the focus of the content moves
2022-08-05 14:15:38 <zim0369> is there a way to preserve it?
2022-08-05 14:24:22 × zim0369 quits (~zim0369@114.143.131.219) (Ping timeout: 252 seconds)
2022-08-05 14:33:31 eviltwin_b joins (~eviltwin_@xmonad/geekosaur)
2022-08-05 15:08:11 × eviltwin_b quits (~eviltwin_@xmonad/geekosaur) (Quit: Client closed)
2022-08-05 15:08:57 eviltwin_b joins (~eviltwin_@xmonad/geekosaur)
2022-08-05 15:23:39 × Digit quits (~user@user/digit) (Read error: Connection reset by peer)
2022-08-05 15:27:45 coco joins (~coco@212-51-146-199.fiber7.init7.net)
2022-08-05 15:31:20 × eviltwin_b quits (~eviltwin_@xmonad/geekosaur) (Quit: Client closed)
2022-08-05 16:04:04 × qbt quits (~qbt@user/edun) (Ping timeout: 268 seconds)
2022-08-05 16:37:48 zim0369 joins (~zim0369@114.143.131.219)
2022-08-05 16:39:14 <zim0369> is it possible to have same binding do different things for different layouts?
2022-08-05 16:42:20 jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)
2022-08-05 16:42:44 <[Leary]> X.A.PerLayoutKeys
2022-08-05 17:09:00 × zim0369 quits (~zim0369@114.143.131.219) (Ping timeout: 252 seconds)
2022-08-05 17:42:46 Guest681 joins (~Guest6@113x42x174x138.ap113.ftth.ucom.ne.jp)
2022-08-05 17:42:59 × Guest681 quits (~Guest6@113x42x174x138.ap113.ftth.ucom.ne.jp) (Client Quit)
2022-08-05 17:43:10 Guest659 joins (~Guest6@113x42x174x138.ap113.ftth.ucom.ne.jp)
2022-08-05 17:44:49 × Guest659 quits (~Guest6@113x42x174x138.ap113.ftth.ucom.ne.jp) (Client Quit)
2022-08-05 18:06:32 zim0369 joins (~zim0369@114.143.131.219)
2022-08-05 18:06:52 <zim0369> [Leary] seems like perlayoutkeys is available in 0.17.9
2022-08-05 18:06:59 <zim0369> while mine is 0.17.0
2022-08-05 18:07:02 <zim0369> installed with cabal
2022-08-05 18:07:12 <zim0369> how do i upgrade to 0.17.9
2022-08-05 18:09:07 diep joins (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c)
2022-08-05 18:09:25 byorgey joins (~byorgey@155.138.238.211)
2022-08-05 18:09:28 × byorgey quits (~byorgey@155.138.238.211) (Client Quit)
2022-08-05 18:09:32 × diep quits (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c) (Remote host closed the connection)
2022-08-05 18:09:54 byorgey joins (~byorgey@155.138.238.211)
2022-08-05 18:10:54 diep joins (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c)
2022-08-05 18:11:01 × diep quits (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c) (Remote host closed the connection)
2022-08-05 18:11:03 <zim0369> anyone?
2022-08-05 18:11:24 diep joins (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c)
2022-08-05 18:25:16 <zim0369> k
2022-08-05 18:25:47 × diep quits (~diep@2a01:cb11:2d7:4a00:a13f:e40c:c4e8:736c) (Remote host closed the connection)
2022-08-05 18:26:00 <zim0369> [Leary]?
2022-08-05 18:26:06 <zim0369> geekosaur[m]?
2022-08-05 18:32:17 <geekosaur[m]> That version number means it's in git
2022-08-05 18:32:26 <zim0369> oh
2022-08-05 18:32:39 <zim0369> but if
2022-08-05 18:32:49 <zim0369> xmonad.actions.perwindowkeys is available then

All times are in UTC.