diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-02-01 00:39:54 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-02-01 00:39:54 +0900 |
| commit | a11c37353f7e825322fcd3b75a4ab48c55f73874 (patch) | |
| tree | 2255f561dec073b78141aa185d8b8d6353675abe /config | |
| parent | 3dfdc7c76cbeb7a6ee20e868bb46026e51c2abf9 (diff) | |
Moved the animations script in scripts directory.
Some Minor tweak on copy.sh.
Need to tweak more as its already abit late
Diffstat (limited to 'config')
| -rw-r--r-- | config/hypr/configs/Keybinds.conf | 2 | ||||
| -rwxr-xr-x | config/hypr/scripts/Animations.sh (renamed from config/hypr/UserScripts/Animations.sh) | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index feb21707..2ea3bfa3 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -38,7 +38,7 @@ bind = $mainMod SHIFT, W, exec, $UserScripts/WallpaperEffects.sh # Wallpaper Eff bind = CTRL ALT, W, exec, $UserScripts/WallpaperRandom.sh # Random wallpapers bind = $mainMod ALT, O, exec, hyprctl setprop active opaque toggle # disable opacity on active window bind = $mainMod SHIFT, K, exec, $scriptsDir/KeyBinds.sh # search keybinds via rofi -bind = $mainMod SHIFT, A, exec, $UserScripts/Animations.sh #hyprland animations menu +bind = $mainMod SHIFT, A, exec, $scriptsDir/Animations.sh #hyprland animations menu # Waybar / Bar related bind = $mainMod, B, exec, pkill -SIGUSR1 waybar # Toggle hide/show waybar diff --git a/config/hypr/UserScripts/Animations.sh b/config/hypr/scripts/Animations.sh index 71368bbe..48ac0f85 100755 --- a/config/hypr/UserScripts/Animations.sh +++ b/config/hypr/scripts/Animations.sh @@ -17,7 +17,7 @@ UserConfigs="$HOME/.config/hypr/UserConfigs" animations_list=$(find "$animations_dir" -maxdepth 1 -type f | sed 's/.*\///' | sed 's/\.conf$//') # Rofi Menu -chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config ~/.config/rofi/config-Animations.rasi "Choose animation:") +chosen_file=$(echo "$animations_list" | rofi -i -dmenu -config ~/.config/rofi/config-Animations.rasi) # Check if a file was selected if [[ -n "$chosen_file" ]]; then @@ -26,10 +26,10 @@ if [[ -n "$chosen_file" ]]; then cp "$full_path" "$UserConfigs/UserAnimations.conf" - notify-send -u low -i "$iDIR/ja.png" "$chosen_file" "Animation Loaded" + notify-send -u low -i "$iDIR/ja.png" "$chosen_file" "Hyprland Animation Loaded" else - notify-send -u low -i "$iDIR/ja.png" "You chose to" "NOT apply other animations" + notify-send -u low -i "$iDIR/ja.png" "You chose NOT" "to apply other Hyprland animations" fi sleep 1 -"$SCRIPTSDIR/RefreshNoWaybar.sh" +"$SCRIPTSDIR/RefreshNoWaybar.sh"
\ No newline at end of file |
