aboutsummaryrefslogtreecommitdiff
path: root/kitty/kitty-themes/.tools/generate_conf.sh
diff options
context:
space:
mode:
authorIndrajith K L2025-11-23 19:20:09 +0530
committerIndrajith K L2025-11-23 19:20:09 +0530
commit8453bb64d330ba4bbb268e2593e95a86477eec1c (patch)
treef9e829365139031dfa938e832f9a05e3536a8e36 /kitty/kitty-themes/.tools/generate_conf.sh
parent1ff9a983329b0e703511e78cd81dcbe81358733f (diff)
downloaddots-niri.tar.gz
dots-niri.tar.bz2
dots-niri.zip
Dot File for niri Desktopniri
Diffstat (limited to 'kitty/kitty-themes/.tools/generate_conf.sh')
-rwxr-xr-xkitty/kitty-themes/.tools/generate_conf.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/kitty/kitty-themes/.tools/generate_conf.sh b/kitty/kitty-themes/.tools/generate_conf.sh
deleted file mode 100755
index db498b9ac..000000000
--- a/kitty/kitty-themes/.tools/generate_conf.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/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