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.

19 lines
361 B

  1. #! /usr/bin/env bash
  2. # kitty
  3. PATH_THEME="$XDG_CONFIG_HOME/kitty/themes"
  4. case "$1" in
  5. light)
  6. cp "$PATH_THEME/onehalf-light.conf" "$PATH_THEME/current.conf"
  7. ;;
  8. dark)
  9. cp "$PATH_THEME/onehalf-dark.conf" "$PATH_THEME/current.conf"
  10. ;;
  11. esac
  12. kitty @ set-colors --all "$PATH_THEME/current.conf" > /dev/null
  13. tput sgr0
  14. tput op