7 lines
129 B
Bash
Executable File
7 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
if pgrep -f floatranger; then
|
|
pkill -f floatranger
|
|
else
|
|
hyprctl dispatch exec 'foot --title floatranger ranger'
|
|
fi
|