Logs: liberachat/#xmonad
| 2026-02-09 14:03:47 | → | rekahsoft joins (~rekahsoft@76.67.111.168) |
| 2026-02-09 15:54:45 | → | Enrico63 joins (~Enrico63@host-79-27-153-69.retail.telecomitalia.it) |
| 2026-02-09 16:10:42 | → | RSBach joins (~RMSBach@2603:6013:9b00:a7c8:e7e5:f272:eb86:ddf) |
| 2026-02-09 16:13:55 | × | RMSBach quits (~RMSBach@24.210.9.182) (Ping timeout: 258 seconds) |
| 2026-02-09 16:13:56 | RSBach | is now known as RMSBach |
| 2026-02-09 16:32:51 | × | Enrico63 quits (~Enrico63@host-79-27-153-69.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-09 16:56:18 | → | Enrico63 joins (~Enrico63@host-79-27-153-69.retail.telecomitalia.it) |
| 2026-02-09 17:08:10 | × | Enrico63 quits (~Enrico63@host-79-27-153-69.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-09 18:09:59 | <ghormoon> | hi, i've managed to map out my audio volume/mute on my laptop fn keys, but now i'm thinking, does anyone have a hint how to do some pretty visual output for volume? like most desktop envs have, when you have it, it shows the percentage bar over windows for a second or two |
| 2026-02-09 18:33:40 | <geekosaur> | nothing provided (you're usually better off using a volume manager, maybe lxqt has one that won't tie you to a desktop env?) but one might be constructable from https://hackage.haskell.org/package/xmonad-contrib-0.18.1/docs/src/XMonad.Hooks.ShowWName.html |
| 2026-02-09 18:34:33 | <geekosaur> | hm, the git link might be a better reference https://github.com/xmonad/xmonad-contrib/blob/master/XMonad/Hooks/ShowWName.hs |
| 2026-02-09 19:13:51 | → | ft joins (~ft@p508db4c0.dip0.t-ipconnect.de) |
| 2026-02-09 19:56:50 | × | hightower3 quits (~hightower@213.186.10.183) (Remote host closed the connection) |
| 2026-02-09 20:00:22 | <ghormoon> | thinking about just puting the current state somehow into xmobar and calling it a day |
| 2026-02-09 20:00:33 | <ghormoon> | but it would be nice if it flashed the change, yeha |
| 2026-02-09 20:00:42 | <ghormoon> | i mean as a little window |
| 2026-02-09 21:52:25 | <haskellbridge> | <iqubic (she/her)> Do things like KDEConnect or GSConnect work with XMonad? I want to link my Android Phone to my Linux PC. |
| 2026-02-09 21:56:41 | <liskin> | ghormoon: pasystray will show notifications whenever you change the volume (or mute, or connect headphones/hdmi/usb/whatever); you'll need a notification thing as well though (like dunst for example) |
| 2026-02-09 21:57:23 | <liskin> | annoyingly, it'll also spam notifications when your video call software auto adjusts the mic volume, but that's relatively easy to hide in dunst |
| 2026-02-09 22:02:59 | <geekosaur> | KDEConnect doesn't seem to work for me, and the description for GSConnect suggests it uses KDEConnect underneath (!) so probably also not |
| 2026-02-09 22:03:35 | <geekosaur> | that said, I don't really know how to use it, so. |
| 2026-02-09 22:07:19 | <geekosaur> | oh, heh, it requires a companion phone app. but the docs say it will work with any desktop as long as you at least have AppIndicator support (e.g. trayer) |
| 2026-02-09 22:08:27 | <haskellbridge> | <iqubic (she/her)> I knew about the companion phone app. |
| 2026-02-09 22:08:43 | <geekosaur> | right, but I didnt which is why I couldn't get it to work here |
| 2026-02-09 22:10:08 | <haskellbridge> | <iqubic (she/her)> I just don't have any system tray. The main issue with my set-up currently is that my XMobar is spanning the entire width of my monitor. Is it possible to tell XMonad to leave some space for a SysTray? |
| 2026-02-09 22:10:27 | <haskellbridge> | <iqubic (she/her)> Also, won't installing KDEConnect also pull in a bunch of KDE libraries? |
| 2026-02-09 22:13:00 | <geekosaur> | it will, yes |
| 2026-02-09 22:14:47 | <geekosaur> | re xmobar, you want TopW / BottomW followed by an alignment (L, C, R) and a percent of the screen to use |
| 2026-02-09 22:15:00 | <geekosaur> | for "position" |
| 2026-02-09 22:20:26 | <haskellbridge> | <iqubic (she/her)> O |
| 2026-02-09 22:21:36 | <haskellbridge> | <iqubic (she/her)> I'm using "spawnBar" in "XMonad.hs" and setting the positioning in my XMobarrc. "position = TopH 34" |
| 2026-02-09 22:23:22 | <haskellbridge> | <iqubic (she/her)> I think that says "Put bar at the top with 34 pixels of height. |
| 2026-02-09 22:23:37 | <haskellbridge> | <iqubic (she/her)> How would I keep that same height but shrink the width? |
| 2026-02-09 22:46:58 | <geekosaur> | looks like there's no specific combination for both, so you would have to use Static {xpos = …, ypos = … width = …, height = …} |
| 2026-02-09 22:47:01 | <geekosaur> | all in pixels |
| 2026-02-09 22:50:15 | <geekosaur> | or cheat with TopHM 34 0 640 0 0 (i.e. a large border on the right, which trayer could then use; the number there is 1/4 of a 2560-pixel-wide screen) |
| 2026-02-09 22:50:26 | <geekosaur> | *margin |
| 2026-02-09 22:50:56 | <haskellbridge> | <iqubic (she/her)> Interesting. I'll try it out and see what happens. |
| 2026-02-09 22:51:02 | <geekosaur> | remember that the config isn't actually Haskell so you can't just drop a parenthesized expression there |
| 2026-02-09 22:51:50 | <geekosaur> | https://codeberg.org/xmobar/xmobar/src/branch/master/doc/quick-start.org |
| 2026-02-10 04:01:08 | × | rekahsoft quits (~rekahsoft@76.67.111.168) (Remote host closed the connection) |
| 2026-02-10 04:10:06 | → | redgloboli_ joins (~redglobol@user/redgloboli) |
| 2026-02-10 04:10:07 | → | PotatoGim_ joins (sid99505@id-99505.lymington.irccloud.com) |
| 2026-02-10 04:11:30 | × | redgloboli quits (~redglobol@user/redgloboli) (Ping timeout: 264 seconds) |
| 2026-02-10 04:11:30 | × | Natch quits (~natch@c-92-34-15-120.bbcust.telenor.se) (Ping timeout: 264 seconds) |
| 2026-02-10 04:11:31 | × | PotatoGim quits (sid99505@id-99505.lymington.irccloud.com) (Ping timeout: 264 seconds) |
| 2026-02-10 04:11:35 | PotatoGim_ | is now known as PotatoGim |
| 2026-02-10 04:14:24 | → | Natch joins (~natch@c-92-34-15-120.bbcust.telenor.se) |
| 2026-02-10 04:15:42 | × | Ging_ quits (46fea76d80@2001:bc8:1210:2cd8::470) (Ping timeout: 252 seconds) |
| 2026-02-10 04:16:04 | → | Ging_ joins (46fea76d80@2001:bc8:1210:2cd8::470) |
| 2026-02-10 06:27:45 | → | ChubaDuba joins (~ChubaDuba@5.166.233.159) |
| 2026-02-10 06:30:10 | × | ChubaDuba quits (~ChubaDuba@5.166.233.159) (Client Quit) |
| 2026-02-10 08:22:07 | × | ft quits (~ft@p508db4c0.dip0.t-ipconnect.de) (Ping timeout: 265 seconds) |
| 2026-02-10 09:05:38 | → | Enrico63 joins (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) |
| 2026-02-10 09:10:11 | × | Enrico63 quits (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) (Client Quit) |
| 2026-02-10 09:25:22 | → | Enrico63 joins (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) |
| 2026-02-10 09:33:17 | × | Enrico63 quits (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-10 10:03:29 | → | Enrico63 joins (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) |
| 2026-02-10 10:11:14 | <liskin> | If you don't use right alignment in xmobar you can just have trayer above it 🙂 |
| 2026-02-10 10:11:51 | <liskin> | Or perhaps it's possible to reserve the extra pixels in the xmobar template somehow |
| 2026-02-10 10:27:54 | × | Enrico63 quits (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-10 11:17:19 | → | Enrico63 joins (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) |
| 2026-02-10 12:44:13 | ← | L29Ah parts (~L29Ah@wikipedia/L29Ah) () |
| 2026-02-10 12:45:12 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 2026-02-10 13:06:24 | × | Enrico63 quits (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-10 13:12:58 | → | Enrico63 joins (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) |
| 2026-02-10 13:45:53 | → | rekahsoft joins (~rekahsoft@bras-base-orllon1103w-grc-20-76-67-111-168.dsl.bell.ca) |
| 2026-02-10 14:02:35 | → | spwl joins (~gwpl@user/gwentpl) |
| 2026-02-10 14:03:49 | → | Digitteknohippie joins (~user@18.47.7.51.dyn.plus.net) |
| 2026-02-10 14:05:16 | → | freedrul1 joins (~deploy@167.99.155.33) |
| 2026-02-10 14:07:05 | × | Digit quits (~user@18.47.7.51.dyn.plus.net) (*.net *.split) |
| 2026-02-10 14:07:05 | × | ml| quits (~ml|@user/ml/x-5298235) (*.net *.split) |
| 2026-02-10 14:07:05 | × | gwentpl quits (~gwpl@user/gwentpl) (*.net *.split) |
| 2026-02-10 14:07:05 | × | mkoskar quits (mkoskar@user/mkoskar) (*.net *.split) |
| 2026-02-10 14:07:05 | × | FatBoyXPC quits (~FatBoyXPC@user/fatboyxpc) (*.net *.split) |
| 2026-02-10 14:07:06 | × | fcser quits (~fcser@booty.farted.net) (*.net *.split) |
| 2026-02-10 14:07:06 | × | freedrull quits (~deploy@167.99.155.33) (*.net *.split) |
| 2026-02-10 14:07:06 | × | smashgrab quits (~smashgrab@188.166.8.80) (*.net *.split) |
| 2026-02-10 14:07:25 | → | FatBoyXPC joins (~FatBoyXPC@user/fatboyxpc) |
| 2026-02-10 14:07:27 | → | mkoskar joins (weeeee@user/mkoskar) |
| 2026-02-10 14:07:42 | → | smashgrab joins (~smashgrab@188.166.8.80) |
| 2026-02-10 14:08:09 | → | ml| joins (~ml|@user/ml/x-5298235) |
| 2026-02-10 14:08:32 | → | fcser joins (~fcser@booty.farted.net) |
| 2026-02-10 15:38:42 | Digitteknohippie | is now known as Digit |
| 2026-02-10 15:41:08 | × | Enrico63 quits (~Enrico63@host-79-22-157-220.retail.telecomitalia.it) (Quit: Client closed) |
| 2026-02-10 16:33:47 | <geekosaur> | that "somehow" was my second suggestion; you just specify a really big right margin |
| 2026-02-10 16:34:00 | <geekosaur> | and let trayer go on top of it |
| 2026-02-10 17:49:40 | → | ft joins (~ft@p508db4c0.dip0.t-ipconnect.de) |
| 2026-02-10 19:59:43 | × | ml| quits (~ml|@user/ml/x-5298235) (Ping timeout: 264 seconds) |
| 2026-02-10 20:13:37 | → | ml| joins (~ml|@user/ml/x-5298235) |
| 2026-02-10 20:29:25 | × | ml| quits (~ml|@user/ml/x-5298235) (Ping timeout: 264 seconds) |
| 2026-02-10 20:41:47 | → | ml| joins (~ml|@user/ml/x-5298235) |
| 2026-02-10 22:06:08 | → | td_ joins (~td@i5387090D.versanet.de) |
| 2026-02-11 01:27:07 | → | Magician joins (deepy@user/deepy) |
| 2026-02-11 01:27:37 | × | deepy quits (deepy@user/deepy) (Ping timeout: 264 seconds) |
| 2026-02-11 02:16:08 | × | rieper quits (~riepernet@2a03:4000:6:f1d6:6885:6fff:fe5a:8933) (Server closed connection) |
| 2026-02-11 02:16:17 | → | rieper joins (~riepernet@2a03:4000:6:f1d6:6885:6fff:fe5a:8933) |
| 2026-02-11 03:16:14 | × | td_ quits (~td@i5387090D.versanet.de) (Ping timeout: 244 seconds) |
| 2026-02-11 03:18:23 | → | td_ joins (~td@i5387093E.versanet.de) |
| 2026-02-11 03:52:48 | × | berberman quits (~berberman@user/berberman) (Server closed connection) |
All times are in UTC.