Skip to main content

Desktop switcher popup for BSPWM

Project description

BSPHUD

Desktop switcher popup for bspwm.

BSPHUD screenshot

BSPHUD is a window that pops up in the middle of your screen and gives an overview of the desktops on the currently focused monitor. Each desktop is represented by a black box. If the box is filled, there are windows on that desktop. The box with a ring around it is the currently focused desktop.

The idea is that you bind BSPHUD to the modifier key (not a combination; the modifier key itself) that you normally use for window management hotkeys, so that BSPHUD pops up right before you're about to switch to a different desktop, send a window to a different monitor, etc.

Installation

You can install through pip, Python's package manager:

pip install bsphud

And then launch BSPHUD like so:

bsphud

or

python -m bsphud

Or you can simply copy src/bsphud/bsphud.py to a safe location and run it with Python:

python bsphud.py

Or you can even just run it directly:

./bsphud.py

BSPHUD has no dependencies except for Python and Tkinter. Tkinter is usually included with Python, but sometimes it's not, for example on minimal systems or if you compiled Python yourself and didn't explicitly enable Tkinter.

If you're on Alpine linux, tkinter can be installed with apk add python3-tkinter.

Configuration

BSPHUD will pop up when you send it SIGUSR1 and close when you send it SIGUSR2. Sending SIGUSR1 when the window is already open will cause BSPHUD to refresh the state of the desktop. BSPHUD writes its pid to /tmp/bsphud.pid.

Below is an example configuration with sxhkd:

# Show BSPHUD when left super is held down
Super_L + any
	kill -10 $(cat /tmp/bsphud.pid)

# Hide BSPHUD when left super is released
@Super_L + any
	kill -12 $(cat /tmp/bsphud.pid)

# If you have something like this
# (a shortcut to reload sxhkd),
# it is wise to add a delay before sending the signal,
# to prevent sxhkd from locking up
super + @Escape
	sleep 1; pkill -USR1 -x sxhkd ; notify-send sxhkd reloaded

# Any shortcuts that change 
# desktops/windows need to also send SIGUSR1
# in order to keep the BSPHUD display
# up to date with the state of the window manager

# super + <number> to switch to that desktop
# and super + shift + <number> to move window to that desktop
super + {_,shift + }{1-9,0}
	bspc {desktop -f,node -d} 'focused:^{1-9,10}' --follow; kill -10 $(cat /tmp/bsphud.pid)

# super + comma and super + period to cycle monitors
super + {_,shift} + {comma,period}
	bspc {monitor -f, node -m} {prev,next} --follow; kill -10 $(cat /tmp/bsphud.pid)

Misc notes

  • there needs to be a rule that tells bspwm to not manage the BSPHUD window. BSPHUD creates this rule automatically. Since the window is unmanaged, the border is actually drawn by BSPHUD itself, not by bspwm. BSPHUD queries your preferred border width and color using bspc config.

  • If you plan to run multiple instances of BSPHUD (e.g. multiuser system), it is wise to change the location of the PID file. For example:

python -m bsphud --pidfile /var/run/user/$(id -u)/bsphud.pid
  • bug: If you send a SIGUSR signal to BSPHUD immediately after launching it, it might crash. Working on it!

  • BSPHUD is inspired by the venerable XFCE desktop envrionment, which has a comparable feature built-in.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bsphud-1.0.5.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

bsphud-1.0.5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file bsphud-1.0.5.tar.gz.

File metadata

  • Download URL: bsphud-1.0.5.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bsphud-1.0.5.tar.gz
Algorithm Hash digest
SHA256 cf603bc832485b7a5c3d15bdb7fc572cd346a107710b0dcdbcf31cb9335b0e3a
MD5 80fc40314704783851ce7e7071095b7a
BLAKE2b-256 aec64e508e468b7889334edbe81a95b64fcb198703c25c45647c216e6179e26d

See more details on using hashes here.

File details

Details for the file bsphud-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: bsphud-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bsphud-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4b7b13de9bc1e5bfee5db970e0491403fdb3328ecbeefe88d7f8b8849d534d96
MD5 9a6498491bb876ef58ea9af656ad4e6e
BLAKE2b-256 643691ea34954132b04795d4c7ebd264a69af35150a0c3e5197f7ec16aa07b34

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page