mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2026-01-11 14:07:17 +00:00
add dotfiles (including kitty & alacritty themes), add proxies, add writing & haskell roles
This commit is contained in:
parent
46bdf4dda0
commit
6561d54f45
346 changed files with 15329 additions and 0 deletions
10
roles/dotfiles/files/.config/kitty/kitty-themes/.tools/generate_conf.sh
Executable file
10
roles/dotfiles/files/.config/kitty/kitty-themes/.tools/generate_conf.sh
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
find ~/github/macos-terminal-themes/schemes/ -name "*.terminal" -print0 | while read -d $'\0' -r file; do
|
||||
filename=`basename "$file"`
|
||||
without_ext=${filename%.*}
|
||||
removed_spaces=${without_ext// /_}
|
||||
# output_filename=`echo ${removed_spaces} | tr '[:upper:]' '[:lower:]'`
|
||||
echo ${removed_spaces}.conf
|
||||
./convert_conf.swift "$file" > ./themes/${removed_spaces}.conf
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue