diff options
Diffstat (limited to 'kitty/kitty-themes/.tools/previews.sh')
| -rwxr-xr-x | kitty/kitty-themes/.tools/previews.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/kitty/kitty-themes/.tools/previews.sh b/kitty/kitty-themes/.tools/previews.sh deleted file mode 100755 index c39c2c787..000000000 --- a/kitty/kitty-themes/.tools/previews.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# @author: @vrdhn on github - -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -cd $SCRIPT_DIR/.. - -set_theme () { - cat themes/$1.conf | awk 'BEGIN {printf("kitty @ set-colors ")} {printf( "%s=%s ",$1,$2 )} END{printf("\n")}' | sh -} - -list=$(find themes -type f | grep "$1" | xargs basename | cut -d. -f1) - -for x in $list ; -do - kitty +kitten icat "previews/$x.png" - read -n 1 -p "$x : Next / Set / Quit :" ans - echo - - case $ans in - n ) ;; - s ) set_theme $x ; exit ;; - q ) exit ;; - esac -done |
