aboutsummaryrefslogtreecommitdiff
path: root/sxhkd/scripts/sxhkd/rofi_new.sh
blob: b1e19d858f2fdbc550a68af5b5037ce3778889d4 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
if [ -z $1 ]; then
    cat <(echo -e "Chat\nWeb\nMail\nMusique") <(bspc query --names -D) | sort -u
else
  for desktop in $(echo $1 | tr "," "\n"); do
      ~/scripts/sxhkd/show.sh $desktop
  done
fi