Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
495 B

  1. #!/usr/bin/env bash
  2. SDIR="$HOME/.config/polybar/forest/scripts"
  3. # Launch Rofi
  4. MENU="$(rofi -no-config -no-lazy-grab -sep "|" -dmenu -i -p '' \
  5. -theme $SDIR/rofi/styles.rasi \
  6. <<< " Default| Nord| Gruvbox| Dark| Cherry|")"
  7. case "$MENU" in
  8. *Default) "$SDIR"/styles.sh --default ;;
  9. *Nord) "$SDIR"/styles.sh --nord ;;
  10. *Gruvbox) "$SDIR"/styles.sh --gruvbox ;;
  11. *Dark) "$SDIR"/styles.sh --dark ;;
  12. *Cherry) "$SDIR"/styles.sh --cherry ;;
  13. esac