Logs: liberachat/#xmonad
| 2022-09-22 01:47:24 | → | matijja joins (~matijja@193.77.181.201) |
| 2022-09-22 01:52:29 | → | srz joins (~srz@179.36.101.95) |
| 2022-09-22 01:55:35 | × | srz quits (~srz@179.36.101.95) (Remote host closed the connection) |
| 2022-09-22 01:56:03 | → | srz joins (~srz@179.36.101.95) |
| 2022-09-22 01:56:19 | × | srz quits (~srz@179.36.101.95) (Remote host closed the connection) |
| 2022-09-22 01:58:19 | <floweynt[m]> | so i figured some things out, but stuff is still kinda weird |
| 2022-09-22 01:58:30 | <floweynt[m]> | `xmobar0 = statusBarPropTo "_XMONAD_LOG_0" "xmobar -x 0 ~/.dotfiles/xmobar/xmobar_top_0" (myXmobarPP 0)` |
| 2022-09-22 01:58:31 | <floweynt[m]> | The should set the _XMONAD_LOG_0 property, right? |
| 2022-09-22 02:04:00 | × | banc quits (banc@gateway/vpn/airvpn/banc) (Ping timeout: 264 seconds) |
| 2022-09-22 02:04:37 | <floweynt[m]> | for some reason checking `xprop -root` doesnt show it |
| 2022-09-22 02:04:43 | <floweynt[m]> | and xmobars are stuck on updating... |
| 2022-09-22 02:05:58 | → | fjMSX joins (~hypni2p@2.92.213.55) |
| 2022-09-22 02:06:53 | → | werneta joins (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) |
| 2022-09-22 02:17:06 | <Lears> | floweynt[m]: If you link your xmonad.hs, someone may be able to help. |
| 2022-09-22 02:18:23 | <floweynt[m]> | https://hastebin.com/axehaxiyac.hs |
| 2022-09-22 02:20:17 | <QNX> | Hi there |
| 2022-09-22 02:20:19 | <QNX> | -- (role =? "gimp-toolbox" <||> role =? "gimp-image-window") --> (ask >>= doF . W.sink) |
| 2022-09-22 02:20:27 | <QNX> | I have this commented out in my config but I forgot what it does. |
| 2022-09-22 02:20:43 | <floweynt[m]> | probably makes gimp float or something |
| 2022-09-22 02:20:44 | <QNX> | I'm assuming from .sink method that it unfloats all gimp toolbox? |
| 2022-09-22 02:22:36 | × | td_ quits (~td@94.134.91.227) (Ping timeout: 264 seconds) |
| 2022-09-22 02:22:37 | <QNX> | Ahh. That was when gimp didn't ahve 'single window mode' and toolbox was floated and this would I think unfloat it. So I don't need it anymore. I thik |
| 2022-09-22 02:23:57 | → | banc joins (banc@gateway/vpn/airvpn/banc) |
| 2022-09-22 02:24:14 | → | td_ joins (~td@94.134.91.59) |
| 2022-09-22 02:24:55 | <QNX> | So when doing a color select, gimp opens a color window, but since I'm full screen, the color select dialog gets tiled to fullscreen |
| 2022-09-22 02:25:04 | <QNX> | I want to float those kind of windows, how |
| 2022-09-22 02:25:32 | <QNX> | Most of the boxes appear fine, as floated. But some don't. |
| 2022-09-22 02:26:55 | <QNX> | problem is wm_class returns the same for the color select window that is for the main window |
| 2022-09-22 02:27:01 | <QNX> | Not sure how to differenciate |
| 2022-09-22 02:29:47 | <QNX> | WM_WINDOW_ROLE(STRING) = "gimp-toolbox-color-dialog" |
| 2022-09-22 02:32:15 | <QNX> | https://bpa.st/TJOA |
| 2022-09-22 02:32:19 | <QNX> | here's my manage hook |
| 2022-09-22 02:32:23 | <QNX> | I get error on the gimp line |
| 2022-09-22 02:32:57 | <QNX> | cannot mix `-->` [infix 0] and `-->` [infix 0] in the same infix expression |
| 2022-09-22 02:34:09 | <QNX> | https://wiki.haskell.org/Xmonad/General_xmonad.hs_config_tips#Gimp using first example here |
| 2022-09-22 02:36:23 | <QNX> | whops missing a comma |
| 2022-09-22 02:37:46 | <QNX> | https://bpa.st/MNDQ here's my complete file |
| 2022-09-22 02:38:10 | <QNX> | https://bpa.st/MNDQ#1L81 I told line 81 to doFloat on these roles |
| 2022-09-22 02:41:33 | <QNX> | https://bpa.st/QNLQ updated line 81 etc |
| 2022-09-22 02:41:46 | <QNX> | now it's line 88 (role =? "gimp-toolbox-color-dialog" --> doFloat |
| 2022-09-22 02:42:02 | <QNX> | where role = stringProperty "WM_WINDOW_ROLE" i have this |
| 2022-09-22 02:42:15 | <QNX> | WM_WINDOW_ROLE(STRING) = "gimp-toolbox-color-dialog" but it'sc alled this |
| 2022-09-22 02:42:23 | <QNX> | I don't know if I need (STRING) in there or not |
| 2022-09-22 02:42:28 | <QNX> | I can't seem to make it float. :( |
| 2022-09-22 02:46:34 | <QNX> | https://bpa.st/UQTA updated file |
| 2022-09-22 02:46:47 | <QNX> | I can't make it float that. |
| 2022-09-22 02:46:53 | <QNX> | where role = stringProperty "WM_WINDOW_ROLE(STRING)" tried this too |
| 2022-09-22 02:47:02 | <QNX> | , role =? "gimp-toolbox-color-dialog" --> doFloat |
| 2022-09-22 02:47:09 | <QNX> | I'm stuck. Please advis, thanks |
| 2022-09-22 02:48:58 | <QNX> | I restarted gimp, manually hold meta + mouse 1 and resize window, then exit gimp, then restart gimp, and now it works. |
| 2022-09-22 02:49:07 | <QNX> | That was very peculiar, sorry for lots of text. thanks |
| 2022-09-22 02:49:42 | <QNX> | Guys, any tips on how you guys organized your workspaces? |
| 2022-09-22 02:50:09 | <QNX> | https://bpa.st/UQTA#1L105 my workspaces here, I'm trying to reorganize my workflow. Trying to optimize |
| 2022-09-22 02:52:17 | <Lears> | I doubt you want (STRING) there, so I'd be a little surprised if that worked as-is. |
| 2022-09-22 02:52:25 | <QNX> | I took out string |
| 2022-09-22 02:52:33 | <QNX> | https://bpa.st/UQTA#1L105 latest copy |
| 2022-09-22 02:52:40 | <QNX> | Trying to determine how to organize my spaces |
| 2022-09-22 02:52:51 | <QNX> | Then doShifts on all my stuff so things are auto sorted |
| 2022-09-22 02:53:03 | <QNX> | Then hook up some type of session/app saving,a nd relaunch apps on restart |
| 2022-09-22 02:53:31 | <QNX> | Not sure how to distinguish between various chrome windows |
| 2022-09-22 02:53:46 | <QNX> | I have 5 chrome windows, Main, School, Business, Dev, and Scratch |
| 2022-09-22 02:54:13 | <QNX> | Usually all 4 windows stay on workspace 1, and one goes on workspace whatever on 2nd monitor |
| 2022-09-22 02:54:31 | <QNX> | I want to auto sort/do shift on chrome windows, but put them in ... I need like better organization and sorting |
| 2022-09-22 02:54:38 | <QNX> | I wonder what all xmonad extentions have for that |
| 2022-09-22 02:54:51 | <QNX> | Like nested workspaces |
| 2022-09-22 02:55:12 | <QNX> | https://hackage.haskell.org/package/xmonad-contrib-0.17.1/docs/XMonad-Layout-SubLayouts.html |
| 2022-09-22 03:00:02 | × | haasn quits (~nand@haasn.dev) (Quit: ZNC 1.7.5+deb4 - https://znc.in) |
| 2022-09-22 03:01:21 | → | haasn joins (~nand@haasn.dev) |
| 2022-09-22 03:16:28 | × | jao quits (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Remote host closed the connection) |
| 2022-09-22 03:18:07 | → | jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
| 2022-09-22 03:35:59 | <floweynt[m]> | <floweynt[m]> "and xmobars are stuck on..." <- any ideas on why? |
| 2022-09-22 04:08:12 | × | jao quits (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 264 seconds) |
| 2022-09-22 05:04:15 | → | chomwitt joins (~chomwitt@2a02:587:dc14:f500:a3a8:3af3:359:8caf) |
| 2022-09-22 05:41:45 | <xmonadtrack> | xmonad-contrib Tony Zorman * v0.17.1-18-g24f11362: docs: Add additional external blog posts (18 hours ago, 2 files, 7+ 0-) https://github.com/xmonad/xmonad-contrib/commit/24f11362c75a |
| 2022-09-22 06:21:14 | → | Solid[m] joins (~slot-matr@2001:470:69fc:105::1:a84) |
| 2022-09-22 06:27:09 | → | hrberg joins (~quassel@171.79-160-161.customer.lyse.net) |
| 2022-09-22 07:38:12 | × | chomwitt quits (~chomwitt@2a02:587:dc14:f500:a3a8:3af3:359:8caf) (Ping timeout: 264 seconds) |
| 2022-09-22 07:58:36 | × | ^[ quits (~user@user//x-8473491) (Ping timeout: 264 seconds) |
| 2022-09-22 08:00:07 | → | ^[ joins (~user@user//x-8473491) |
| 2022-09-22 08:25:14 | → | cfricke joins (~cfricke@user/cfricke) |
| 2022-09-22 08:38:44 | × | sogens quits (sogens@gateway/vpn/protonvpn/sogens) (Ping timeout: 265 seconds) |
| 2022-09-22 08:40:29 | → | sogens joins (sogens@gateway/vpn/protonvpn/sogens) |
| 2022-09-22 08:59:02 | × | ft quits (~ft@p3e9bc57b.dip0.t-ipconnect.de) (Quit: Lost terminal) |
| 2022-09-22 10:39:25 | → | chomwitt joins (~chomwitt@2a02:587:dc14:f500:2dfd:13d3:f366:7e03) |
| 2022-09-22 11:14:25 | × | mvk quits (~mvk@2607:fea8:5ce3:8500::778c) (Ping timeout: 244 seconds) |
| 2022-09-22 12:12:20 | → | amosbird joins (~amosbird@20.205.108.97) |
| 2022-09-22 12:13:05 | <amosbird> | Hello! Does xmonad support banish mouch? |
| 2022-09-22 12:13:11 | <amosbird> | mouse* |
| 2022-09-22 12:14:18 | <geekosaur> | xmonad itself will not banish the mouse for you,m you'd need to run something like unclutter. you might also want to use the FloatKeys module to replace xmonad's mouse bindings |
| 2022-09-22 12:16:16 | <amosbird> | geekosaur: Hmm, I don't use mouse at all. Do I still need to replace xmonad's mouse bindings? |
| 2022-09-22 12:17:43 | <geekosaur> | you won'tbe able to do much with floats if you don't set up FloatKeys |
| 2022-09-22 12:18:04 | <geekosaur> | (not that you can do much with floats anyway, they're easily our weakest point 😞 ) |
| 2022-09-22 12:19:05 | <geekosaur> | to be clear,m most of our floating window support is done with mod-mouse1 and mod-mouse3. FloatKeys gives you keybindings you can use instead |
| 2022-09-22 12:19:25 | <geekosaur> | so you can go completely mouseless |
| 2022-09-22 12:49:33 | × | matijja quits (~matijja@193.77.181.201) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2022-09-22 12:51:50 | → | matijja joins (~matijja@193.77.181.201) |
| 2022-09-22 12:58:51 | × | benin0 quits (~benin@183.82.206.30) (Ping timeout: 252 seconds) |
| 2022-09-22 12:59:32 | <byorgey> | amosbird: check out banish and banishScreen in XMonad.Actions.Warp: https://hackage.haskell.org/package/xmonad-contrib-0.17.1/docs/XMonad-Actions-Warp.html#v:banishScreen |
| 2022-09-22 12:59:44 | <byorgey> | not sure if that's what you're looking for. |
| 2022-09-22 13:19:20 | → | jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
All times are in UTC.