Spawn a runner when switching to an empty workspace on Hyprland
new-trimmed.mp4
cargo install --git=https://github.com/nate-sys/hypr-empty
- Create the file
~/.config/hypr-empty/config.toml
- Specify the commands you want to be run and the workspaces to run them in
# Each command goes under a [[components]]
[[components]]
# List of workspaces hypr-empty should be active to
workspaces = [ "1", "2" ]
# If you're using wofi
command = "wofi"
args = ["-S", "drun"]
# If you're using rofi
command = "rofi"
args = ["-show", "drun"]
# arbitrary program
command = "name_of_program"
args = ["arg1", "arg2"]
# You can specify different commands with multiple [[components]]
# But only one workspaces/command/args per [[components]]
[[components]]
workspaces = [ "3" ]
command = "firefox"
# args is optional
- Add
hypr-empty
to your startup apps and make sure that.cargo/bin
is in your path