diff options
| -rw-r--r-- | config/fastfetch/config-compact.jsonc | 6 | ||||
| -rw-r--r-- | config/fastfetch/config-pokemon.jsonc | 4 | ||||
| -rw-r--r-- | config/fastfetch/config-v2.jsonc | 4 | ||||
| -rw-r--r-- | config/fastfetch/config.jsonc | 8 | ||||
| -rwxr-xr-x | config/hypr/scripts/Kool_Quick_Settings.sh | 44 |
5 files changed, 33 insertions, 33 deletions
diff --git a/config/fastfetch/config-compact.jsonc b/config/fastfetch/config-compact.jsonc index 962b6bb3..7a6af0d0 100644 --- a/config/fastfetch/config-compact.jsonc +++ b/config/fastfetch/config-compact.jsonc @@ -28,10 +28,10 @@ "keyColor": "yellow" }, { - "type": "custom", + "keyColor": "blue", "key": " ", - "format": "JaKooLit: {$DOTS_VERSION}", - "keyColor": "blue" + "text": "echo Jakoolit: v${DOTS_VERSION}", + "type": "command" }, { "type": "wm", diff --git a/config/fastfetch/config-pokemon.jsonc b/config/fastfetch/config-pokemon.jsonc index 0435033c..a0a883c0 100644 --- a/config/fastfetch/config-pokemon.jsonc +++ b/config/fastfetch/config-pokemon.jsonc @@ -27,10 +27,10 @@ "keyColor": "yellow" }, { - "type": "custom", + "type": "command", "key": " ", "keyColor": "blue", - "format": "JaKooLit Version: {$DOTS_VERSION}" + "text": "echo JaKooLit Version: ${DOTS_VERSION}" }, { "type": "wm", diff --git a/config/fastfetch/config-v2.jsonc b/config/fastfetch/config-v2.jsonc index 6d20c695..163ca67b 100644 --- a/config/fastfetch/config-v2.jsonc +++ b/config/fastfetch/config-v2.jsonc @@ -28,9 +28,9 @@ "keyColor": "31" }, { - "type": "custom", + "type": "command", "key": " ├ ", - "format": "JaKooLit Version: {$DOTS_VERSION}", + "format": "echo JaKooLit Version: ${DOTS_VERSION}", "keyColor": "31" }, { diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc index dce06d78..8b2de09f 100644 --- a/config/fastfetch/config.jsonc +++ b/config/fastfetch/config.jsonc @@ -24,9 +24,9 @@ "keyColor": "yellow" }, { - "type": "custom", + "type": "command", "key": "│ ├", - "format": "JaKooLit Version: {$DOTS_VERSION}", + "text": "echo JaKooLit Version: ${DOTS_VERSION}", "keyColor": "yellow" }, { @@ -127,10 +127,6 @@ "key": "│ └", "keyColor": "magenta" }, - { - "type": "custom", - "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m \u001b[39m \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " - }, "break" ] } diff --git a/config/hypr/scripts/Kool_Quick_Settings.sh b/config/hypr/scripts/Kool_Quick_Settings.sh index 16742492..cdcaed2a 100755 --- a/config/hypr/scripts/Kool_Quick_Settings.sh +++ b/config/hypr/scripts/Kool_Quick_Settings.sh @@ -22,16 +22,18 @@ UserScripts="$HOME/.config/hypr/UserScripts" # Function to display the menu options without numbers menu() { cat <<EOF -view/edit User Defaults -view/edit ENV variables -view/edit Window Rules -view/edit User Keybinds -view/edit User Settings -view/edit Startup Apps -view/edit Decorations -view/edit Animations -view/edit Laptop Keybinds -view/edit Default Keybinds +Edit User Defaults +Edit User ENV variables +Edit User Keybinds +Edit User Settings +Edit User Startups +Edit User Window Rules +Edit User Decorations +Edit User Animations +Edit User Laptop Keybinds +Edit System Keybinds +Edit System Startup Apps +Edit System Window Rules Choose Kitty Terminal Theme Configure Monitors (nwg-displays) Configure Workspace Rules (nwg-displays) @@ -53,16 +55,18 @@ main() { # Map choices to corresponding files case "$choice" in - "view/edit User Defaults") file="$UserConfigs/01-UserDefaults.conf" ;; - "view/edit ENV variables") file="$UserConfigs/ENVariables.conf" ;; - "view/edit Window Rules") file="$configs/WindowRules.conf" ;; - "view/edit User Keybinds") file="$UserConfigs/UserKeybinds.conf" ;; - "view/edit User Settings") file="$UserConfigs/UserSettings.conf" ;; - "view/edit Startup Apps") file="$configs/Startup_Apps.conf" ;; - "view/edit Decorations") file="$UserConfigs/UserDecorations.conf" ;; - "view/edit Animations") file="$UserConfigs/UserAnimations.conf" ;; - "view/edit Laptop Keybinds") file="$UserConfigs/Laptops.conf" ;; - "view/edit Default Keybinds") file="$configs/Keybinds.conf" ;; + "Edit User Defaults") file="$UserConfigs/01-UserDefaults.conf" ;; + "Edit User ENV variables") file="$UserConfigs/ENVariables.conf" ;; + "Edit User Keybinds") file="$UserConfigs/UserKeybinds.conf" ;; + "Edit User Settings") file="$UserConfigs/UserSettings.conf" ;; + "Edit User Startups") file="$UserConfigs/Startup_Apps.conf" ;; + "Edit User Window Rules") file="$UserConfigs/WindowRules.conf" ;; + "Edit User Decorations") file="$UserConfigs/UserDecorations.conf" ;; + "Edit User Animations") file="$UserConfigs/UserAnimations.conf" ;; + "Edit User Laptop Keybinds") file="$UserConfigs/Laptops.conf" ;; + "Edit System Keybinds") file="$configs/Keybinds.conf" ;; + "Edit System Startup Apps") file="$configs/Startup_Apps.conf" ;; + "Edit System Window Rules") file="$configs/WindowRules.conf" ;; "Choose Kitty Terminal Theme") $scriptsDir/Kitty_themes.sh ;; "Configure Monitors (nwg-displays)") if ! command -v nwg-displays &>/dev/null; then |
