From 1f972b97f3b853f71e182737416c1ad485e53381 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 27 Jan 2025 11:11:28 +0900 Subject: replaced the bell logo for swaync in some scripts with own Discord logo --- config/hypr/UserScripts/WallpaperEffects.sh | 6 +++--- config/hypr/UserScripts/ZshChangeTheme.sh | 8 ++++---- config/hypr/scripts/AirplaneMode.sh | 2 +- config/hypr/scripts/ChangeBlur.sh | 2 +- config/hypr/scripts/ChangeLayout.sh | 2 +- config/hypr/scripts/GameMode.sh | 2 +- config/hypr/scripts/SwitchKeyboardLayout.sh | 2 +- config/hypr/scripts/TouchPad.sh | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) (limited to 'config/hypr') diff --git a/config/hypr/UserScripts/WallpaperEffects.sh b/config/hypr/UserScripts/WallpaperEffects.sh index 1e84742b..481489e9 100755 --- a/config/hypr/UserScripts/WallpaperEffects.sh +++ b/config/hypr/UserScripts/WallpaperEffects.sh @@ -49,7 +49,7 @@ no-effects() { sleep 2 "$SCRIPTSDIR/Refresh.sh" - notify-send -u low -i "$iDIR/bell.png" "No wallpaper" "effects applied" + notify-send -u low -i "$iDIR/ja.png" "No wallpaper" "effects applied" # copying wallpaper for rofi menu cp "$current_wallpaper" "$wallpaper_output" } @@ -71,7 +71,7 @@ main() { no-effects elif [[ "${effects[$choice]+exists}" ]]; then # Apply selected effect - notify-send -u normal -i "$iDIR/bell.png" "Applying:" "$choice effects" + notify-send -u normal -i "$iDIR/ja.png" "Applying:" "$choice effects" eval "${effects[$choice]}" # Wait for effects to be applied sleep 1 @@ -85,7 +85,7 @@ main() { sleep 0.5 # Refresh rofi, waybar, wallust palettes "${SCRIPTSDIR}/Refresh.sh" - notify-send -u low -i "$iDIR/bell.png" "$choice" "effects applied" + notify-send -u low -i "$iDIR/ja.png" "$choice" "effects applied" else echo "Effect '$choice' not recognized." fi diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index 5132cd66..93cc4bf7 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -29,7 +29,7 @@ main() { # if nothing selected, script won't change anything if [ -z "$choice" ]; then - notify-send -u low -i "$iDIR/bell.png" "No theme selected." "No changes made!" + notify-send -u low -i "$iDIR/ja.png" "No theme selected." "No changes made!" exit 0 fi @@ -40,16 +40,16 @@ main() { # Pick a random theme from the original themes_array (excluding "Random") random_theme=${themes_array[$((RANDOM % (${#themes_array[@]} - 1) + 1))]} theme_to_set="$random_theme" - notify-send -i "$iDIR/bell.png" "Random theme:" "selected: $random_theme" + notify-send -i "$iDIR/ja.png" "Random theme:" "selected: $random_theme" else # Set theme to the selected choice theme_to_set="$choice" - notify-send -i "$iDIR/bell.png" "Theme selected:" "$choice" + notify-send -i "$iDIR/ja.png" "Theme selected:" "$choice" fi if [ -f "$zsh_path" ]; then sed -i "s/^$var_name=.*/$var_name=\"$theme_to_set\"/" "$zsh_path" - notify-send -i "$iDIR/bell.png" "OMZ theme" "applied. restart your terminal" + notify-send -i "$iDIR/ja.png" "OMZ theme" "applied. restart your terminal" else notify-send "Error:" "~.zshrc file not found!" fi diff --git a/config/hypr/scripts/AirplaneMode.sh b/config/hypr/scripts/AirplaneMode.sh index 93526b66..4379935d 100755 --- a/config/hypr/scripts/AirplaneMode.sh +++ b/config/hypr/scripts/AirplaneMode.sh @@ -2,7 +2,7 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Airplane Mode. Turning on or off all wifi using rfkill. -notif="$HOME/.config/swaync/images/bell.png" +notif="$HOME/.config/swaync/images/ja.png" # Check if any wireless device is blocked wifi_blocked=$(rfkill list wifi | grep -o "Soft blocked: yes") diff --git a/config/hypr/scripts/ChangeBlur.sh b/config/hypr/scripts/ChangeBlur.sh index c9d8c25c..46aaad68 100755 --- a/config/hypr/scripts/ChangeBlur.sh +++ b/config/hypr/scripts/ChangeBlur.sh @@ -2,7 +2,7 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Script for changing blurs on the fly -notif="$HOME/.config/swaync/images/bell.png" +notif="$HOME/.config/swaync/images/ja.png" STATE=$(hyprctl -j getoption decoration:blur:passes | jq ".int") diff --git a/config/hypr/scripts/ChangeLayout.sh b/config/hypr/scripts/ChangeLayout.sh index b13142cf..b083fcdc 100755 --- a/config/hypr/scripts/ChangeLayout.sh +++ b/config/hypr/scripts/ChangeLayout.sh @@ -2,7 +2,7 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # for changing Hyprland Layouts (Master or Dwindle) on the fly -notif="$HOME/.config/swaync/images/bell.png" +notif="$HOME/.config/swaync/images/ja.png" LAYOUT=$(hyprctl -j getoption general:layout | jq '.str' | sed 's/"//g') diff --git a/config/hypr/scripts/GameMode.sh b/config/hypr/scripts/GameMode.sh index 7ab6f451..a5915cfb 100755 --- a/config/hypr/scripts/GameMode.sh +++ b/config/hypr/scripts/GameMode.sh @@ -2,7 +2,7 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # Game Mode. Turning off all animations -notif="$HOME/.config/swaync/images/bell.png" +notif="$HOME/.config/swaync/images/ja.png" SCRIPTSDIR="$HOME/.config/hypr/scripts" diff --git a/config/hypr/scripts/SwitchKeyboardLayout.sh b/config/hypr/scripts/SwitchKeyboardLayout.sh index f1f8b244..f505fa6c 100755 --- a/config/hypr/scripts/SwitchKeyboardLayout.sh +++ b/config/hypr/scripts/SwitchKeyboardLayout.sh @@ -4,7 +4,7 @@ layout_file="$HOME/.cache/kb_layout" settings_file="$HOME/.config/hypr/UserConfigs/UserSettings.conf" -notif_icon="$HOME/.config/swaync/images/bell.png" +notif_icon="$HOME/.config/swaync/images/ja.png" # Refined ignore list with patterns or specific device names ignore_patterns=( diff --git a/config/hypr/scripts/TouchPad.sh b/config/hypr/scripts/TouchPad.sh index 5174968e..8509d79f 100755 --- a/config/hypr/scripts/TouchPad.sh +++ b/config/hypr/scripts/TouchPad.sh @@ -5,7 +5,7 @@ # use hyprctl devices to get your system touchpad device name # source https://github.com/hyprwm/Hyprland/discussions/4283?sort=new#discussioncomment-8648109 -notif="$HOME/.config/swaync/images/bell.png" +notif="$HOME/.config/swaync/images/ja.png" export STATUS_FILE="$XDG_RUNTIME_DIR/touchpad.status" -- cgit v1.2.3 From 1fc313fc9263d9b0ab1e347f0f185f2c07be3313 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 28 Jan 2025 02:15:32 +0900 Subject: bump v2.3.10; added waybar default v5; default waybar style will be [Wallust] Chroma Tally; new default wallpaper --- config/hypr/initial-boot.sh | 2 +- config/hypr/v2.3.10 | 5 ++ config/hypr/v2.3.9 | 5 -- config/hypr/wallpaper_effects/.wallpaper_current | Bin 4770307 -> 13764316 bytes config/hypr/wallpaper_effects/.wallpaper_modified | Bin 6840851 -> 13781371 bytes config/waybar/configs/[TOP] Default Laptop_v5 | 55 ++++++++++++++++++++++ config/waybar/configs/[TOP] Default_v4 | 2 +- config/waybar/configs/[TOP] Default_v5 | 53 +++++++++++++++++++++ copy.sh | 14 +++--- wallpapers/Garage.jpg | Bin 1017988 -> 0 bytes wallpapers/Lofi - Anime Girl2.png | Bin 0 -> 13764316 bytes 11 files changed, 123 insertions(+), 13 deletions(-) create mode 100644 config/hypr/v2.3.10 delete mode 100644 config/hypr/v2.3.9 create mode 100644 config/waybar/configs/[TOP] Default Laptop_v5 create mode 100644 config/waybar/configs/[TOP] Default_v5 delete mode 100644 wallpapers/Garage.jpg create mode 100644 wallpapers/Lofi - Anime Girl2.png (limited to 'config/hypr') diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh index 05502bd3..4cde9a47 100755 --- a/config/hypr/initial-boot.sh +++ b/config/hypr/initial-boot.sh @@ -10,7 +10,7 @@ # Variables scriptsDir=$HOME/.config/hypr/scripts wallpaper=$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified -waybar_style="$HOME/.config/waybar/style/[Dark] Latte-Wallust combined.css" +waybar_style="$HOME/.config/waybar/style/[Wallust] Chroma Tally.css" kvantum_theme="catppuccin-mocha-blue" color_scheme="prefer-dark" gtk_theme="Flat-Remix-GTK-Blue-Dark" diff --git a/config/hypr/v2.3.10 b/config/hypr/v2.3.10 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.3.10 @@ -0,0 +1,5 @@ +### https://github.com/JaKooLit ### +## https://github.com/JaKooLit/Hyprland-Dots +## This is to have a reference of which version would be + +## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/v2.3.9 b/config/hypr/v2.3.9 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.3.9 +++ /dev/null @@ -1,5 +0,0 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/Hyprland-Dots -## This is to have a reference of which version would be - -## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/wallpaper_effects/.wallpaper_current b/config/hypr/wallpaper_effects/.wallpaper_current index 30f80bf7..4a3515da 100644 Binary files a/config/hypr/wallpaper_effects/.wallpaper_current and b/config/hypr/wallpaper_effects/.wallpaper_current differ diff --git a/config/hypr/wallpaper_effects/.wallpaper_modified b/config/hypr/wallpaper_effects/.wallpaper_modified index 8c76007f..b42159e3 100644 Binary files a/config/hypr/wallpaper_effects/.wallpaper_modified and b/config/hypr/wallpaper_effects/.wallpaper_modified differ diff --git a/config/waybar/configs/[TOP] Default Laptop_v5 b/config/waybar/configs/[TOP] Default Laptop_v5 new file mode 100644 index 00000000..c972b1b4 --- /dev/null +++ b/config/waybar/configs/[TOP] Default Laptop_v5 @@ -0,0 +1,55 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ + +// ### DEFAULT v5 (Laptop) - Top ### // +{ +"include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + ], +"layer": "top", +//"mode": "dock", +"exclusive": true, +"passthrough": false, +"position": "top", +"spacing": 3, +"fixed-center": true, +"ipc": true, +"margin-top": 3, +"margin-left": 8, +"margin-right": 8, + +"modules-left": [ + "group/app_drawer", + "custom/separator#dot-line", + "group/mobo_drawer", + "custom/separator#blank", + "group/laptop", + "custom/separator#line", + "custom/weather", + "custom/separator#blank", + "custom/cava_mviz", + ], + +"modules-center": [ + "custom/swaync", + "custom/separator#dot-line", + "hyprland/workspaces#rw", + "custom/separator#dot-line", + "idle_inhibitor", + "custom/hint", + ], + +"modules-right": [ + "network#speed", + "group/connections", + "custom/separator#line", + "tray", + "mpris", + "clock", + "group/audio", + "custom/separator#dot-line", + "group/status", + ], +} \ No newline at end of file diff --git a/config/waybar/configs/[TOP] Default_v4 b/config/waybar/configs/[TOP] Default_v4 index 051aa848..678c2085 100644 --- a/config/waybar/configs/[TOP] Default_v4 +++ b/config/waybar/configs/[TOP] Default_v4 @@ -1,6 +1,6 @@ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ -// ### DEFAULT v4 (Laptop) - Top ### // +// ### DEFAULT v4 - Top ### // { "include": [ "$HOME/.config/waybar/Modules", diff --git a/config/waybar/configs/[TOP] Default_v5 b/config/waybar/configs/[TOP] Default_v5 new file mode 100644 index 00000000..3566068c --- /dev/null +++ b/config/waybar/configs/[TOP] Default_v5 @@ -0,0 +1,53 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ + +// ### DEFAULT v5 - Top ### // +{ +"include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + ], +"layer": "top", +//"mode": "dock", +"exclusive": true, +"passthrough": false, +"position": "top", +"spacing": 3, +"fixed-center": true, +"ipc": true, +"margin-top": 3, +"margin-left": 8, +"margin-right": 8, + +"modules-left": [ + "group/app_drawer", + "custom/separator#dot-line", + "group/mobo_drawer", + "custom/separator#line", + "custom/weather", + "custom/separator#blank", + "custom/cava_mviz", + ], + +"modules-center": [ + "custom/swaync", + "custom/separator#dot-line", + "hyprland/workspaces#rw", + "custom/separator#dot-line", + "idle_inhibitor", + "custom/hint", + ], + +"modules-right": [ + "network#speed", + "group/connections", + "custom/separator#line", + "tray", + "mpris", + "clock", + "group/audio", + "custom/separator#dot-line", + "group/status", + ], +} \ No newline at end of file diff --git a/copy.sh b/copy.sh index fe65332b..7490f460 100755 --- a/copy.sh +++ b/copy.sh @@ -3,9 +3,9 @@ clear wallpaper=$HOME/.config/hypr/wallpaper_effects/.wallpaper_modified -waybar_style="$HOME/.config/waybar/style/[Dark] Latte-Wallust combined.css" -waybar_config="$HOME/.config/waybar/configs/[TOP] Default_v4" -waybar_config_laptop="$HOME/.config/waybar/configs/[TOP] Default Laptop_v4" +waybar_style="$HOME/.config/waybar/style/[Wallust] Chroma Tally.css" +waybar_config="$HOME/.config/waybar/configs/[TOP] Default_v5" +waybar_config_laptop="$HOME/.config/waybar/configs/[TOP] Default Laptop_v5" # Check if running as root. If root, script will exit if [[ $EUID -eq 0 ]]; then @@ -609,7 +609,8 @@ if hostnamectl | grep -q 'Chassis: desktop'; then "$HOME/.config/waybar/configs/[BOT] Default Laptop" \ "$HOME/.config/waybar/configs/[TOP] Default Laptop_v2" \ "$HOME/.config/waybar/configs/[TOP] Default Laptop_v3" \ - "$HOME/.config/waybar/configs/[TOP] Default Laptop_v4" 2>&1 | tee -a "$LOG" || true + "$HOME/.config/waybar/configs/[TOP] Default Laptop_v4" \ + "$HOME/.config/waybar/configs/[TOP] Default Laptop_v5" 2>&1 | tee -a "$LOG" || true else # Configurations for a laptop or any system other than desktop ln -sf "$waybar_config_laptop" "$HOME/.config/waybar/config" 2>&1 | tee -a "$LOG" @@ -618,7 +619,8 @@ else "$HOME/.config/waybar/configs/[BOT] Default" \ "$HOME/.config/waybar/configs/[TOP] Default_v2" \ "$HOME/.config/waybar/configs/[TOP] Default_v3" \ - "$HOME/.config/waybar/configs/[TOP] Default_v4" 2>&1 | tee -a "$LOG" || true + "$HOME/.config/waybar/configs/[TOP] Default_v4" \ + "$HOME/.config/waybar/configs/[TOP] Default_v5" 2>&1 | tee -a "$LOG" || true fi # additional wallpapers @@ -626,7 +628,7 @@ echo "$(tput setaf 6) By default only a few wallpapers are copied...$(tput sgr0) printf "\n" while true; do - read -rp "${CAT} Would you like to download additional wallpapers? ${WARN} This is more than >700mb (y/n)" WALL + read -rp "${CAT} Would you like to download additional wallpapers? ${WARN} This is more than 800 MB (y/n)" WALL case $WALL in [Yy]) echo "${NOTE} Downloading additional wallpapers..." diff --git a/wallpapers/Garage.jpg b/wallpapers/Garage.jpg deleted file mode 100644 index 1f9f471a..00000000 Binary files a/wallpapers/Garage.jpg and /dev/null differ diff --git a/wallpapers/Lofi - Anime Girl2.png b/wallpapers/Lofi - Anime Girl2.png new file mode 100644 index 00000000..4a3515da Binary files /dev/null and b/wallpapers/Lofi - Anime Girl2.png differ -- cgit v1.2.3