diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-03-20 15:33:11 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-03-20 15:33:11 +0900 |
| commit | dffd296b92f06b1606f8d03137fbf235a39d261b (patch) | |
| tree | 6f005ce5c9b37dfc8da07a30529eb7d5163f0f22 /config/hypr/scripts | |
| parent | b3e8e78ac2ad712c38e5365faeb5bb5471dde692 (diff) | |
Added Kitty Theme Selector - Added in KooL hyprland Settings rofi. Kool Settings rofi modified since it is basically expanding
Diffstat (limited to 'config/hypr/scripts')
| -rwxr-xr-x | config/hypr/scripts/Kitty_themes.sh | 39 | ||||
| -rwxr-xr-x | config/hypr/scripts/Kool_Quick_Settings.sh | 2 |
2 files changed, 41 insertions, 0 deletions
diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh new file mode 100755 index 00000000..471b7143 --- /dev/null +++ b/config/hypr/scripts/Kitty_themes.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# Kitty Themes Source https://github.com/dexpota/kitty-themes # + +# Define directories and variables +kitty_themes_DiR="$HOME/.config/kitty/kitty-themes" # Kitty Themes Directory +theme_path="$kitty_themes_DiR/$theme.conf" +kitty_config="$HOME/.config/kitty/kitty.conf" +iDIR="$HOME/.config/swaync/images" +rofi_theme="$HOME/.config/rofi/config-kitty-theme.rasi" + +# List the kitty-theme files from the themes directory +theme=$(ls "$kitty_themes_DiR"/*.conf | xargs -n 1 basename | sed 's/\.conf$//' | rofi -dmenu -config $rofi_theme) + +# Check if the user selected a theme +if [ -z "$theme" ]; then + echo "No theme selected, exiting..." + exit 1 +fi + +# Uncomment the line that includes the kitty themes if it's commented +if grep -q '#include ./kitty-themes/' "$kitty_config"; then + sed -i "s|#include ./kitty-themes/|include ./kitty-themes/$theme.conf|g" "$kitty_config" + + notify-send -u low -i "$iDIR/ja.png" "$theme" "Kitty Theme Loaded" + + for pid_kitty in $(pidof kitty); do + kill -SIGUSR1 "$pid_kitty" + done +else + # If the line is already uncommented, just add the chosen theme + sed -i "s|include ./kitty-themes/.*|include ./kitty-themes/$theme.conf|g" "$kitty_config" + + notify-send -u low -i "$iDIR/ja.png" "$theme" "Kitty Theme Loaded" + + for pid_kitty in $(pidof kitty); do + kill -SIGUSR1 "$pid_kitty" + done +fi diff --git a/config/hypr/scripts/Kool_Quick_Settings.sh b/config/hypr/scripts/Kool_Quick_Settings.sh index cee44c8f..85351216 100755 --- a/config/hypr/scripts/Kool_Quick_Settings.sh +++ b/config/hypr/scripts/Kool_Quick_Settings.sh @@ -32,6 +32,7 @@ view/edit Decorations view/edit Animations view/edit Laptop Keybinds view/edit Default Keybinds +Choose Kitty Terminal Theme Configure Monitors (nwg-displays) Configure Workspace Rules (nwg-displays) GTK Settings (nwg-look) @@ -62,6 +63,7 @@ main() { "view/edit Animations") file="$UserConfigs/UserAnimations.conf" ;; "view/edit Laptop Keybinds") file="$UserConfigs/Laptops.conf" ;; "view/edit Default Keybinds") file="$configs/Keybinds.conf" ;; + "Choose Kitty Terminal Theme") $scriptsDir/Kitty_themes.sh ;; "Configure Monitors (nwg-displays)") if ! command -v nwg-displays &>/dev/null; then notify-send -i "$iDIR/ja.png" "E-R-R-O-R" "Install nwg-displays first" |
