Clean up testing scripts

This commit is contained in:
Dakedres 2024-04-01 09:35:00 -06:00
parent f85bca1e76
commit 2ba4061454
3 changed files with 0 additions and 22 deletions

View File

@ -1,6 +0,0 @@
#!/bin/sh
awk -F ' *: *' '
/^#/ { print }
$1 ~ "palette" { p = 1; next }
p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 }
' $1

View File

@ -1,9 +0,0 @@
echo '
https://raw.githubusercontent.com/tinted-theming/base16-qutebrowser/main/templates/default.mustache qutebrowser
https://raw.githubusercontent.com/tinted-theming/base16-qutebrowser/main/templates/minimal.mustache qutebrowser-minimal
https://raw.githubusercontent.com/tinted-theming/base16-rofi/master/templates/default.mustache rofi
https://raw.githubusercontent.com/tinted-theming/base16-rofi/master/templates/minimal.mustache rofi-minimal
https://raw.githubusercontent.com/aarowill/base16-alacritty/master/templates/default.mustache alacritty
' | awk '
/^http/ { system("shchemes install_tinted_template " $1 " " $2) }
'

View File

@ -1,7 +0,0 @@
#!/bin/sh
NAME=$1
URL=https://raw.githubusercontent.com/tinted-theming/schemes/master/base16/$NAME.yaml
cd $(dirname $(readlink -f $0))
curl $URL | sh ./convert_scheme.sh > ./schemes/$NAME.properties