Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→
Page 1 .. 935 936 937 938 939 940 941 942 943 944 945 .. 1851
185,007 events total
2022-11-03 00:59:43 × defjam quits (~eb0t@33ba0c97.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 01:02:30 defjam joins (~eb0t@33ba53ce.skybroadband.com)
2022-11-03 01:06:50 × defjam quits (~eb0t@33ba53ce.skybroadband.com) (Ping timeout: 246 seconds)
2022-11-03 01:08:46 defjam joins (~eb0t@33bac25c.skybroadband.com)
2022-11-03 01:09:38 × chomwitt quits (~chomwitt@athe730-c-multi-217.home.otenet.gr) (Ping timeout: 246 seconds)
2022-11-03 01:12:38 jabuxas joins (~jabuxas@user/jabuxas)
2022-11-03 01:13:29 × defjam quits (~eb0t@33bac25c.skybroadband.com) (Ping timeout: 272 seconds)
2022-11-03 01:14:15 <jabuxas> yuu[m], what is that sourcegraph website?
2022-11-03 01:15:17 defjam joins (~eb0t@33ba1d62.skybroadband.com)
2022-11-03 01:17:16 <yuu[m]> jabuxas: search code in most github, gitlab, ... repos. when i'm in doubt about how to use something i search there for examples. it's free software so can self host it as well.
2022-11-03 01:18:05 <jabuxas> so for example I can put the `Hacks.trayerPaddingXmobarEventHook` module there and see how it is implemented?
2022-11-03 01:20:27 × defjam quits (~eb0t@33ba1d62.skybroadband.com) (Ping timeout: 272 seconds)
2022-11-03 01:21:33 defjam joins (~eb0t@33ba0720.skybroadband.com)
2022-11-03 01:24:11 <yuu[m]> jabuxas: yeah. but for what you asked earlier i would both https://sourcegraph.com/search?q=context:global+%2C+manageHook.*namedScratchpad&patternType=regexp
2022-11-03 01:26:10 <yuu[m]> that one from Icy-Thought/Snowflake is basically what i use
2022-11-03 01:27:51 <jabuxas> is it just to me that it is not finding results ?
2022-11-03 01:28:19 × defjam quits (~eb0t@33ba0720.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 01:29:00 <jabuxas> yuu[m], https://0x0.st/ogM2.png
2022-11-03 01:29:48 <yuu[m]> jabuxas: remove that %2C
2022-11-03 01:30:07 <yuu[m]> which browser is that?
2022-11-03 01:30:08 defjam joins (~eb0t@05421c43.skybroadband.com)
2022-11-03 01:30:11 <jabuxas> firefox
2022-11-03 01:30:51 <yuu[m]> it was suppose to be a comma ,
2022-11-03 01:32:25 <jabuxas> oh yeah now showed up a lot more results
2022-11-03 01:32:30 <jabuxas> this is a very useful website, thank you
2022-11-03 01:40:36 × defjam quits (~eb0t@05421c43.skybroadband.com) (Ping timeout: 248 seconds)
2022-11-03 01:42:23 defjam joins (~eb0t@33ba3baf.skybroadband.com)
2022-11-03 01:43:59 <jabuxas> if a game launcher which is supposed to be a floating window is being tiled, is that a layout problem?
2022-11-03 01:44:29 <jabuxas> I already added `className =? "riotclientux.exe" --> doShift "gfx" <> doFloat` to my rules but it is still being tiled
2022-11-03 01:46:19 × brianbnt quits (~brianbnt@user/brianbnt) (Read error: Software caused connection abort)
2022-11-03 01:48:29 × defjam quits (~eb0t@33ba3baf.skybroadband.com) (Ping timeout: 246 seconds)
2022-11-03 01:49:36 brianbnt joins (~brianbnt@user/brianbnt)
2022-11-03 01:50:32 defjam joins (~eb0t@33ba02b9.skybroadband.com)
2022-11-03 01:55:55 × zoglesby quits (f0f8ca1525@user/zoglesby) (Read error: Software caused connection abort)
2022-11-03 01:56:55 × defjam quits (~eb0t@33ba02b9.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 01:57:36 <[Leary]> jabuxas: It won't be your layout; it's the manageHook. Use xprop to check the class name, and iirc you want the /second/ one /exactly/, or it won't match.
2022-11-03 01:57:49 defjam joins (~eb0t@33baa886.skybroadband.com)
2022-11-03 01:58:33 zoglesby joins (f0f8ca1525@user/zoglesby)
2022-11-03 02:01:16 <jabuxas> it is matching, https://0x0.st/ogME.txt
2022-11-03 02:03:05 <jabuxas> all other windows work when I doFloat them so it's not a problem that xmonad isn't floating anything, Lutris works, for example. that window is the only problem. usually on other wm I don't have to float them and they already float automatically (for some dark magic reason)
2022-11-03 02:03:37 <jabuxas> i'm able to play it if I turn on virtual desktop on lutris but that's not really a good solution
2022-11-03 02:05:03 × defjam quits (~eb0t@33baa886.skybroadband.com) (Ping timeout: 255 seconds)
2022-11-03 02:06:51 <[Leary]> Remaining possibilities are that there's some error in how you're incorporating those hooks, or that the class name isn't set upon window creation. It's better to check the former first by sharing your config, but in the latter case, you might need to match on another property or use X.H.DynamicProperty to catch the change in class name.
2022-11-03 02:06:52 <geekosaur> it's possible that it's not setting its WM_CLASS until after it is mapped (this is an EWMH violation but hey, who cares about mandatory standards?). you would need to use https://hackage.haskell.org/package/xmonad-contrib-0.17.1/docs/XMonad-Hooks-DynamicProperty.html in that case
2022-11-03 02:07:04 defjam joins (~eb0t@33ba0642.skybroadband.com)
2022-11-03 02:09:41 <jabuxas> [Leary], https://0x0.st/ogMU.txt
2022-11-03 02:12:46 <[Leary]> Okay, if the other hooks in the same list are working correctly, then this one should too; you'll have to try X.H.DP.
2022-11-03 02:13:15 <[Leary]> The second doFloat is redundant, but I don't think it could cause any problems.
2022-11-03 02:13:34 <jabuxas> I put the second one because I forgot I had tried before and it hadn't worked out
2022-11-03 02:14:15 <jabuxas> I will be trying that DynamicProperty
2022-11-03 02:16:49 × defjam quits (~eb0t@33ba0642.skybroadband.com) (Ping timeout: 272 seconds)
2022-11-03 02:19:16 defjam joins (~eb0t@33bee41f.skybroadband.com)
2022-11-03 02:23:12 <jabuxas> the property that is being changed is probably WM_CLASS right?
2022-11-03 02:23:52 × defjam quits (~eb0t@33bee41f.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 02:24:01 <jabuxas> I already implemented it but it's not working. Should I do it by title maybe?
2022-11-03 02:25:33 defjam joins (~eb0t@05421f88.skybroadband.com)
2022-11-03 02:32:40 × defjam quits (~eb0t@05421f88.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 02:35:02 defjam joins (~eb0t@33b77111.skybroadband.com)
2022-11-03 02:39:53 <jabuxas> I will continue trying it out later, ty [Leary] and geekosaur
2022-11-03 02:39:59 × jabuxas quits (~jabuxas@user/jabuxas) (Quit: Leaving)
2022-11-03 02:41:41 × defjam quits (~eb0t@33b77111.skybroadband.com) (Ping timeout: 246 seconds)
2022-11-03 02:43:18 defjam joins (~eb0t@33baed53.skybroadband.com)
2022-11-03 02:46:16 × defjam quits (~eb0t@33baed53.skybroadband.com) (Read error: Connection reset by peer)
2022-11-03 02:51:34 defjam joins (~eb0t@33bb8e99.skybroadband.com)
2022-11-03 03:02:39 × banc quits (banc@gateway/vpn/airvpn/banc) (Ping timeout: 255 seconds)
2022-11-03 03:05:56 × defjam quits (~eb0t@33bb8e99.skybroadband.com) (Ping timeout: 248 seconds)
2022-11-03 03:07:52 defjam joins (~eb0t@33bb39b0.skybroadband.com)
2022-11-03 03:13:27 × defjam quits (~eb0t@33bb39b0.skybroadband.com) (Ping timeout: 255 seconds)
2022-11-03 03:15:07 defjam joins (~eb0t@33ba2742.skybroadband.com)
2022-11-03 03:22:43 × defjam quits (~eb0t@33ba2742.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 03:23:41 banc joins (banc@gateway/vpn/airvpn/banc)
2022-11-03 03:24:23 defjam joins (~eb0t@33ba22a7.skybroadband.com)
2022-11-03 03:24:35 × td_ quits (~td@83.135.9.45) (Ping timeout: 272 seconds)
2022-11-03 03:26:11 td_ joins (~td@83.135.9.44)
2022-11-03 03:28:46 × defjam quits (~eb0t@33ba22a7.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 03:30:44 defjam joins (~eb0t@33b76e71.skybroadband.com)
2022-11-03 03:31:01 × defjam quits (~eb0t@33b76e71.skybroadband.com) (Read error: Connection reset by peer)
2022-11-03 03:36:57 defjam joins (~eb0t@0543c039.skybroadband.com)
2022-11-03 03:42:19 × defjam quits (~eb0t@0543c039.skybroadband.com) (Ping timeout: 272 seconds)
2022-11-03 03:46:57 defjam joins (~eb0t@33ba49a8.skybroadband.com)
2022-11-03 03:51:19 × defjam quits (~eb0t@33ba49a8.skybroadband.com) (Ping timeout: 252 seconds)
2022-11-03 03:53:12 defjam joins (~eb0t@33bacbb5.skybroadband.com)
2022-11-03 03:53:39 × defjam quits (~eb0t@33bacbb5.skybroadband.com) (Read error: Connection reset by peer)
2022-11-03 04:03:09 defjam joins (~eb0t@33ba3511.skybroadband.com)
2022-11-03 04:03:41 Guest98 joins (~Guest98@2603-8000-6f00-2842-0000-0000-0000-1673.res6.spectrum.com)
2022-11-03 04:03:51 <Guest98> hi launching tmux causes a pretty fatal error unsure if its xmonad related
2022-11-03 04:04:19 <Guest98> when i launch tmux i get: X.Org X Server 1.21.1.4
2022-11-03 04:04:19 <Guest98> X Protocol Version 11, Revision 0
2022-11-03 04:04:20 <Guest98> Current Operating System: Linux archdesk 6.0.6-arch1-1 #1 SMP PREEMPT_DYNAMIC Sat, 29 Oct 2022 14:08:39 +0000 x86_64
2022-11-03 04:04:20 <Guest98> Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ab300c2c-d7f8-4395-a8aa-27f8215394ae rw loglevel=3 quiet rd.driver.blacklist=nouveau nvidia-drm.modeset=1 amd_pstate.shared_mem=1
2022-11-03 04:04:21 <Guest98> Current version of pixman: 0.42.2
2022-11-03 04:04:21 <Guest98>         Before reporting problems, check http://wiki.x.org
2022-11-03 04:04:22 <Guest98>         to make sure that you have the latest version.
2022-11-03 04:04:22 <Guest98> Markers: (--) probed, (**) from config file, (==) default setting,
2022-11-03 04:04:23 <Guest98>         (++) from command line, (!!) notice, (II) informational,
2022-11-03 04:04:23 <Guest98>         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
2022-11-03 04:04:24 <Guest98> (==) Log file: "/var/log/Xorg.1.log", Time: Wed Nov  2 21:03:54 2022
2022-11-03 04:04:24 <Guest98> (==) Using config file: "/etc/X11/xorg.conf"
2022-11-03 04:04:25 <Guest98> (==) Using config directory: "/etc/X11/xorg.conf.d"
2022-11-03 04:04:25 <Guest98> (==) Using system config directory "/usr/share/X11/xorg.conf.d"

All times are in UTC.