Compare commits

..

2 Commits

Author SHA1 Message Date
Harzo 62d7ed7d44 scripts: Move to .local/bin/scripts 2023-06-01 14:52:45 +02:00
Harzo 179b233bfc fish: Change `rm` alias to function with no args 2023-06-01 12:40:00 +02:00
14 changed files with 15 additions and 12 deletions

View File

@ -33,7 +33,7 @@
<name>Degoogle</name> <name>Degoogle</name>
<submenu></submenu> <submenu></submenu>
<unique-id>1685216951025684-1</unique-id> <unique-id>1685216951025684-1</unique-id>
<command>~/.scripts/degoogle %F</command> <command>~/.local/bin/scripts/degoogle %F</command>
<description>Convert WebP and WebM to PNG and MP4 respectively</description> <description>Convert WebP and WebM to PNG and MP4 respectively</description>
<range>*</range> <range>*</range>
<patterns>*.webp;*.webm</patterns> <patterns>*.webp;*.webm</patterns>

View File

@ -1,4 +1,4 @@
fish_add_path ~/.scripts fish_add_path ~/.local/bin/scripts
# Make square jpg (for covert art) # Make square jpg (for covert art)
function pic2jsq function pic2jsq

View File

@ -20,6 +20,8 @@ alias t tree
alias htop 'btm -b' alias htop 'btm -b'
# Replace rm with trash-cli # Replace rm with trash-cli
alias rm 'echo Please use trm instead of `rm`. If you want to forcefully, recursively remove a file/directory, use `trmf`.' function rm
echo Please use trm instead of `rm`. If you want to forcefully, recursively remove a file/directory, use `trmf`.
end
alias trm trash-put alias trm trash-put
alias trmf '/usr/bin/rm -rfv' alias trmf '/usr/bin/rm -rfv'

View File

@ -7,4 +7,4 @@ exec-once = swayidle -w &
exec-once = wl-paste -t text --watch clipman store --no-persist & exec-once = wl-paste -t text --watch clipman store --no-persist &
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & 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 = 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 &

View File

@ -25,17 +25,17 @@ bind = $smod, down, movewindow, d
bind = $mmod, Return, exec, footclient bind = $mmod, Return, exec, footclient
bind = $mmod, F, exec, pkill fsearch; fsearch bind = $mmod, F, exec, pkill fsearch; fsearch
bind = $smod, D, exec, wofi --show drun bind = $smod, D, exec, wofi --show drun
bind = $smod, X, exec, ~/.scripts/system/screenlock bind = $smod, X, exec, ~/.local/bin/scripts/system/screenlock
bind = $smod, S, exec, ~/.scripts/grimshot bind = $smod, S, exec, ~/.local/bin/scripts/grimshot
bind = , Print, exec, ~/.scripts/grimshot -f bind = , Print, exec, ~/.local/bin/scripts/grimshot -f
bind = $smod, Escape, exec, ~/.scripts/system/wofi-session bind = $smod, Escape, exec, ~/.local/bin/scripts/system/wofi-session
bindle = , XF86AudioRaiseVolume, exec, swayosd --output-volume raise bindle = , XF86AudioRaiseVolume, exec, swayosd --output-volume raise
bindle = , XF86AudioLowerVolume, exec, swayosd --output-volume lower bindle = , XF86AudioLowerVolume, exec, swayosd --output-volume lower
bindl = , XF86AudioPlay, exec, playerctl play-pause bindl = , XF86AudioPlay, exec, playerctl play-pause
bind = , Caps_Lock, exec, sleep 0.2 && swayosd --caps-lock bind = , Caps_Lock, exec, sleep 0.2 && swayosd --caps-lock
bind = $mmod, V, exec, clipman pick -t wofi bind = $mmod, V, exec, clipman pick -t wofi
bind = $smod, P, exec, ~/.scripts/colorpicker bind = $smod, P, exec, ~/.local/bin/scripts/colorpicker
bind = $smod, K, exec, ~/.scripts/system/kblayout-picker bind = $smod, K, exec, ~/.local/bin/scripts/system/kblayout-picker
bind = $smod, Tab, exec, footclient -a sysmonitor btm -b bind = $smod, Tab, exec, footclient -a sysmonitor btm -b
# Change current workspace # Change current workspace

View File

@ -124,6 +124,6 @@
}, },
"hyprland/language": { "hyprland/language": {
"format": " {}", "format": " {}",
"on-click-right": "~/.scripts/system/kblayout-picker" "on-click-right": "~/.local/bin/scripts/system/kblayout-picker"
} }
} }

3
.gitignore vendored
View File

@ -10,7 +10,7 @@
.gnupg .gnupg
.gtkrc-2.0 .gtkrc-2.0
.hyprland .hyprland
.local/bin .local/bin/*
.local/share/* .local/share/*
.local/state .local/state
.minecraft .minecraft
@ -68,5 +68,6 @@ go
!.config/xfce4 !.config/xfce4
.config/xfce4/xfconf/ .config/xfce4/xfconf/
!.config/xsettingsd !.config/xsettingsd
!.local/bin/scripts/
!.local/share/applications !.local/share/applications
!.local/share/dotfiles !.local/share/dotfiles