launcher 683 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. #wofi --show run --allow-images --hide-scroll --insensitive --width 500 --height 300 --lines 20 --columns 1
  3. source "$HOME"/.cache/wal/colors.sh
  4. get-color () {
  5. sed s/\#//g <(echo "${1}ff")
  6. }
  7. fuzzel --border-radius=5 \
  8. --font="$(gsettings get org.gnome.desktop.interface font-name | tr -d \')" \
  9. --icon-theme="$(gsettings get org.gnome.desktop.interface icon-theme | tr -d \')" \
  10. --background-color="$(get-color "${background}")" \
  11. --text-color="$(get-color "${foreground}")" \
  12. --match-color="$(get-color "${color1}")" \
  13. --selection-color="$(get-color "${color3}")" \
  14. --selection-text="$(get-color "${color4}")" \
  15. --border-color="$(get-color "${color8}")" "$*"