diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2022-04-10 14:56:44 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2022-04-10 14:56:44 +0200 |
commit | a595693c7b556d62daff91da050b2d82ac4325e8 (patch) | |
tree | 9537de367da515618a6c8d9d42b69527d5104b6f /sxhkd | |
parent | 30e771058c7669fe49d57c5fcfb8b96b937136a4 (diff) |
Renamed workspaces
Diffstat (limited to 'sxhkd')
-rwxr-xr-x | sxhkd/scripts/sxhkd/rofi_new.sh | 2 | ||||
-rwxr-xr-x | sxhkd/scripts/sxhkd/rofi_rename.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sxhkd/scripts/sxhkd/rofi_new.sh b/sxhkd/scripts/sxhkd/rofi_new.sh index a5093cd..02b37f5 100755 --- a/sxhkd/scripts/sxhkd/rofi_new.sh +++ b/sxhkd/scripts/sxhkd/rofi_new.sh @@ -18,7 +18,7 @@ if [ -z $1 ]; then # sort -u <(…) <(…) # so, we are using pipes for that mkfifo ${tmpdir}/p1 ${tmpdir}/p2 - echo "Chat\nWeb\nMail\nMusique" > "${tmpdir}/p1" & + echo "Chat\nWeb\nMail\nmusique" > "${tmpdir}/p1" & bspc query --names -D > "${tmpdir}/p2" & sort -u "${tmpdir}/p1" "${tmpdir}/p2" else diff --git a/sxhkd/scripts/sxhkd/rofi_rename.sh b/sxhkd/scripts/sxhkd/rofi_rename.sh index d2bb04d..73eae1f 100755 --- a/sxhkd/scripts/sxhkd/rofi_rename.sh +++ b/sxhkd/scripts/sxhkd/rofi_rename.sh @@ -1,7 +1,7 @@ #!/bin/sh if [ -z $1 ]; then - echo "Edit" - echo "Musique" + echo "edit" + echo "musique" exit 0 else bspc desktop -n ${1} |