diff --git a/.config/Thunar/uca.xml b/.config/Thunar/uca.xml
index 1bf58d2..37b87fb 100644
--- a/.config/Thunar/uca.xml
+++ b/.config/Thunar/uca.xml
@@ -33,7 +33,7 @@
Degoogle
1685216951025684-1
- ~/.scripts/degoogle %F
+ ~/.local/bin/scripts/degoogle %F
Convert WebP and WebM to PNG and MP4 respectively
*
*.webp;*.webm
diff --git a/.config/fish/conf.d/scripts.fish b/.config/fish/conf.d/scripts.fish
index a4f7749..780bdbe 100644
--- a/.config/fish/conf.d/scripts.fish
+++ b/.config/fish/conf.d/scripts.fish
@@ -1,4 +1,4 @@
-fish_add_path ~/.scripts
+fish_add_path ~/.local/bin/scripts
# Make square jpg (for covert art)
function pic2jsq
diff --git a/.config/hypr/conf.d/autostart.conf b/.config/hypr/conf.d/autostart.conf
index 1deaf29..9d6cbbd 100644
--- a/.config/hypr/conf.d/autostart.conf
+++ b/.config/hypr/conf.d/autostart.conf
@@ -7,4 +7,4 @@ exec-once = swayidle -w &
exec-once = wl-paste -t text --watch clipman store --no-persist &
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP &
-exec-once = ~/.scripts/system/random-wallpaper 15 ~/.wallpapers &
+exec-once = ~/.local/bin/scripts/system/random-wallpaper 15 ~/.wallpapers &
diff --git a/.config/hypr/conf.d/keybinds.conf b/.config/hypr/conf.d/keybinds.conf
index 33df3fc..510f027 100644
--- a/.config/hypr/conf.d/keybinds.conf
+++ b/.config/hypr/conf.d/keybinds.conf
@@ -25,17 +25,17 @@ bind = $smod, down, movewindow, d
bind = $mmod, Return, exec, footclient
bind = $mmod, F, exec, pkill fsearch; fsearch
bind = $smod, D, exec, wofi --show drun
-bind = $smod, X, exec, ~/.scripts/system/screenlock
-bind = $smod, S, exec, ~/.scripts/grimshot
-bind = , Print, exec, ~/.scripts/grimshot -f
-bind = $smod, Escape, exec, ~/.scripts/system/wofi-session
+bind = $smod, X, exec, ~/.local/bin/scripts/system/screenlock
+bind = $smod, S, exec, ~/.local/bin/scripts/grimshot
+bind = , Print, exec, ~/.local/bin/scripts/grimshot -f
+bind = $smod, Escape, exec, ~/.local/bin/scripts/system/wofi-session
bindle = , XF86AudioRaiseVolume, exec, swayosd --output-volume raise
bindle = , XF86AudioLowerVolume, exec, swayosd --output-volume lower
bindl = , XF86AudioPlay, exec, playerctl play-pause
bind = , Caps_Lock, exec, sleep 0.2 && swayosd --caps-lock
bind = $mmod, V, exec, clipman pick -t wofi
-bind = $smod, P, exec, ~/.scripts/colorpicker
-bind = $smod, K, exec, ~/.scripts/system/kblayout-picker
+bind = $smod, P, exec, ~/.local/bin/scripts/colorpicker
+bind = $smod, K, exec, ~/.local/bin/scripts/system/kblayout-picker
bind = $smod, Tab, exec, footclient -a sysmonitor btm -b
# Change current workspace
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc
index a68d65e..ca1550e 100644
--- a/.config/waybar/config.jsonc
+++ b/.config/waybar/config.jsonc
@@ -124,6 +124,6 @@
},
"hyprland/language": {
"format": " {}",
- "on-click-right": "~/.scripts/system/kblayout-picker"
+ "on-click-right": "~/.local/bin/scripts/system/kblayout-picker"
}
}
diff --git a/.gitignore b/.gitignore
index 9c27479..3f1e42b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,7 +10,7 @@
.gnupg
.gtkrc-2.0
.hyprland
-.local/bin
+.local/bin/*
.local/share/*
.local/state
.minecraft
@@ -68,5 +68,6 @@ go
!.config/xfce4
.config/xfce4/xfconf/
!.config/xsettingsd
+!.local/bin/scripts/
!.local/share/applications
!.local/share/dotfiles
diff --git a/.scripts/colorpicker b/.local/bin/scripts/colorpicker
similarity index 100%
rename from .scripts/colorpicker
rename to .local/bin/scripts/colorpicker
diff --git a/.scripts/degoogle b/.local/bin/scripts/degoogle
similarity index 100%
rename from .scripts/degoogle
rename to .local/bin/scripts/degoogle
diff --git a/.scripts/grimshot b/.local/bin/scripts/grimshot
similarity index 100%
rename from .scripts/grimshot
rename to .local/bin/scripts/grimshot
diff --git a/.scripts/system/kblayout-picker b/.local/bin/scripts/system/kblayout-picker
similarity index 100%
rename from .scripts/system/kblayout-picker
rename to .local/bin/scripts/system/kblayout-picker
diff --git a/.scripts/system/random-wallpaper b/.local/bin/scripts/system/random-wallpaper
similarity index 100%
rename from .scripts/system/random-wallpaper
rename to .local/bin/scripts/system/random-wallpaper
diff --git a/.scripts/system/screenlock b/.local/bin/scripts/system/screenlock
similarity index 100%
rename from .scripts/system/screenlock
rename to .local/bin/scripts/system/screenlock
diff --git a/.scripts/system/wofi-session b/.local/bin/scripts/system/wofi-session
similarity index 100%
rename from .scripts/system/wofi-session
rename to .local/bin/scripts/system/wofi-session