Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
hyprswitch
A rust CLI/GUI to switch between windows in Hyprland
It can cycle through windows using keyboard shortcuts or/and a GUI.
Windows are sorted by their position on the screen, and can be filtered by class or workspace.
To use the GUI, you need to start the daemon once at the start of Hyprland with exec-once = hyprswitch init & in your
config.
Subsequent calls to hyprswitch (with the gui, dispatch or close command) will send the command to the daemon which will execute the
command and update the GUI.

Table of Contents
Migration to 3.0.0
- The complex Config has been removed in favor of a simpler config.
- More GUI - CLI options added. (
--mod-key/--switch-type/ ...) - Removed some cli args. (
--do-initial-execute,--stay-open-on-close)
See Wiki for more details
Installation (Hyprland >= 0.42 required)
From Source
- gtk4 and gtk4-layer-shell must be installed
cargo install hyprswitch
Arch
paru -S hyprswitch/yay -S hyprswitch
Nixos
- add
hyprswitch.url = "github:h3rmt/hyprswitch/release";to flake inputs - add
specialArgs = { inherit inputs; };tonixpkgs.lib.nixosSystem - add
inputs.hyprswitch.packages.x86_64-linux.defaultto yourenvironment.systemPackages - available systems:
aarch64-linux,i686-linux,riscv32-linux,riscv64-linux,x86_64-linux
Usage
Once the binary is installed, you can modify your ~/.config/hypr/hyprland.conf.
Parameters
This list only includes the most common options or values, (see hyprswitch gui --help / hyprswitch init --help / ... for more detailed info)
-
--dry-run / -dPrint the command that would be executed instead of executing it (Daemon/simple doesn't switch, client doesn't send command to daemon) -
-vIncrease the verbosity level (-v: debug, -vv: trace) (Use RUST_LOG env-var for more control) -
-qTurn off all output (Except when using--dry-run) -
initInitialize and start the Daemon--custom-css <PATH>Specify a path to custom CSS file--show-title[default=true] Show the window title instead of its class in Overview (fallback to class if title is empty)--workspaces-per-row[default=5] Limit amount of workspaces in one row (overflows to next row)--size-factor[default=6] The size factor (float) for the GUI (original_size / 30 * size_factor)
-
guiOpens the GUI-
--mod-key <MODIFIER>[{required}] The modifier key used to open the GUI (super/super_l, super_r, alt/alt_l, alt_r, ctrl/ctrl_l, ctrl_r) (You might want to use a variable, see Examples) -
--key <KEY>[{required}] The key to used to open the GUI (e.g., tab) (You might want to use a variable, see Examples) -
--reverse-key <KEYTYPE>=<KEY>[default=shift] The key used for reverse switching. Format: reverse-key=mod= or reverse-key=key= (e.g., --reverse-key=mod=shift, --reverse-key=key=grave) -
--close <TYPE>How to close hyprswitch (Returnor pressing a window always closes, ESC always kills)default[default] Close when pressing themod key+keyagain (e.g., SUPER + TAB) or an index key (1, 2, 3, ...)mod-key-releaseClose when releasing themod key(e.g., SUPER)
-
--max-switch-offset <MAX_SWITCH_OFFSET>[default=6] The maximum offset you can switch to with number keys, use 0 to disable number keys to switch and hide index in GUI -
--hide-active-window-border[default=false] Hide the active window border in the GUI (also hides the border for selected workspace or monitor) -
--monitorsShow the GUI only on this monitor(s) [default: display on all monitors] Example:--monitors=HDMI-0,DP-1/--monitors=eDP-1Available values:hyprctl monitors -j | jq '.[].name'(You might want to use this together with the next option as using arrow keys to select a window on a different monitor will still be possible. Or use--filter-current-monitorto only show windows of the current monitor) -
--show-workspaces-on-all-monitorsShow all workspaces on all monitors [default: only show workspaces on the corresponding monitor] -
Same options as
simpleexcept--offsetand--reverse
-
-
simpleSwitch without using the GUI / Daemon (switches directly)-
--reverse / -rReverse the order of windows / switch backwards -
--offset / -o <OFFSET>Switch to a specific window offset (default 1) -
--include-special-workspacesInclude special workspaces (e.g., scratchpad) -
--filter-same-class / -sOnly switch between windows that have the same class/type as the currently focused window -
--filter-current-workspace / -wOnly switch between windows that are on the same workspace as the currently focused window -
--filter-current-monitor / -mOnly switch between windows that are on the same monitor as the currently focused window -
--sort-recentSort windows by most recently focused -
--switch-typeSwitches to next / previous workspace / client / monitorclient[default] Switch to next / previous clientworkspaceSwitch to next / previous workspacemonitorSwitch to next / previous monitor
-
Examples:
(Modify the $... variables to use the keys you prefer)
It is recommended to keep the $key variables to prevent errors when forgetting to change the parameter value when changing the keybinding
GUI
Simple: Press super + $key(tab) to open the GUI, use mouse to click on window or press 1 / 2 / ... to switch to index
exec-once = hyprswitch init --show-title --size-factor 5.5 --workspaces-per-row 5 &
$key = tab
$mod = super
bind = $mod , $key, exec, hyprswitch gui --mod-key $mod --key $key --max-switch-offset 9 --hide-active-window-border
Simple Arrow keys: Press super + $key(tab) to open the GUI, or press 1 / 2 / ... or arrow keys to change selected window, return to switch
exec-once = hyprswitch init --show-title --size-factor 5.5 --workspaces-per-row 5 &
$key = tab
$mod = super
bind = $mod, $key, exec, hyprswitch gui --mod-key $mod --key $key --max-switch-offset 9
Keyboard (reverse = grave / ` ): Press alt + $key(tab) to open the GUI (and switch to next window), hold alt, press $key(tab) repeatedly to switch to the next window, press $reverse(`) to switch backwards, release alt to switch
exec-once = hyprswitch init --show-title &
$key = tab
$mod = alt
$reverse = grave
bind = $mod, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse && hyprswitch dispatch
bind = $mod $reverse, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse && hyprswitch dispatch -r
# use the if switching to the next window with the opening keypress is unwanted
#bind = alt, $key, exec, hyprswitch gui --mod-key alt_l --key $key --close mod-key-release --reverse-key=key=$reverse
#bind = $mod $reverse, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse
Keyboard recent (reverse = grave / ` ): Press alt + $key(tab) to open the GUI (and switch to previously used window), hold alt, press $key(tab) repeatedly to switch to the less and less previously used window, press $reverse(`) to switch to more recent used windows, release alt to switch
exec-once = hyprswitch init --show-title &
$key = tab
$mod = alt
$reverse = grave
bind = $mod, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse --sort-recent && hyprswitch dispatch
bind = $mod $reverse, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse --sort-recent && hyprswitch dispatch -r
# use the if switching to the next window with the opening keypress is unwanted
#bind = $mod, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse
#bind = alt $reverse, $key, exec, hyprswitch gui --mod-key $mod --key $key --close mod-key-release --reverse-key=key=$reverse
More Examples in Wiki
Features
- Switch between windows using keyboard shortcuts or/and a GUI
- Customizable Keybindings
- TODO add features to this list
Experimental Features
- Launch applications from the GUI
- Support for plugging in new monitors while running [Only when run as systemd service]
- Automatically restart when version changes [Only when run as systemd service]
- Create all binds and configs from a single config file
- TODO add experimental features to this list
Theming (--custom-css)
CSS Variables
}
Example custom CSS for 4K screen to override default CSS values:
/* light blue borders for active, more transparent bg and more border-radius */
}
/* more margin around image for 4K screen */
}
/* increased index for 4K screen */
}
/* increased font size for 4K screen */
}
/* increased font size for 4K screen */
}
See Wiki for more info and Default, Windows and Launcher for the default Styles
Other
Sorting of windows
1 2 3 4
1 +------+ +------+
2 | 1 | | 2 |
3 | | +------+
4 +------+ +------+
5 +------+ | 4 |
6 | 3 | | |
7 +------+ +------+
1 2 3 4
Workspace 1 Workspace 2
1 +------+ +------+ | +------+ +------+
2 | 1 | | 2 | | 5 | | 6 |
3 | | | | | | | +------+
4 +------+ +------+ +------+ +------+
5 +------+ +------+ | +------+ | 8 |
6 | 3 | | 4 | | 7 | | |
7 +------+ +------+ | +------+ +------+
1 2 3 4 1 2 3 4
1 3 5 6 8 10 11 12
+----------------------------------------+
1 | +-------+ +---+ |
2 | | 1 | +---+ | 5 | |
3 | | | +---+ | 3 | | | |
4 | +-------+ | 2 | +---+ | | |
5 | +---+ +---+ | | |
6 | | 4 | | | |
7 | +-------+ +---+ +---+ |
8 | | 6 | +----+ |
9 | | | | 7 | |
10 | +-------+ +----+ |
+----------------------------------------+
2 4 7 9
Experimental Environment Variables
These variables are subject to change and might be removed in the future (activate debug mode with -v and look for ENV dump: in the logs to see the current values or inside the envs.rs file)
REMOVE_HTML_FROM_WORKSPACE_NAMEbool [default: true]: Remove HTML tag (currently only<span>{}</span>) from workspace nameSHOW_LAUNCHERbool [default: true]: Show a Launcher Icon in the GUI when using default--closemodeLAUNCHER_MAX_ITEMSi32 [default: 5]: Maximum number of items in the LauncherDEFAULT_TERMINALstring [default: ""]: Terminal to use for launching terminal applications, e.g.,alacritty. (If empty, a list if known terminals is used)DISABLE_TOASTSbool [default: false]: Disable toasts when errors in the daemon or keybinds are detected