commit 0df6ee635776971dbde7a21596a32029989a1af5
parent 0ef7ee99e7848aa0055f2cd8d56df1ece0c2c4f4
Author: oscarbenedito <oscar@oscarbenedito.com>
Date:   Sun, 14 Jun 2020 13:43:11 +0200

Deleted leading ',' in some scripts

Deleted for the scripts that aren't regularly called from the command
line by the user, but as a result of a shortcut or part of another
script.

Diffstat:
Mdot_config/i3/config | 16++++++++--------
Rdot_local/bin/executable_,appimage -> dot_local/bin/executable_appimage | 0
Rdot_local/bin/executable_,configure-monitors -> dot_local/bin/executable_configure-monitors | 0
Rdot_local/bin/executable_,i3-lock -> dot_local/bin/executable_i3-lock | 0
Rdot_local/bin/executable_,mount-drive -> dot_local/bin/executable_mount-drive | 0
Rdot_local/bin/executable_,toggle-kbmap -> dot_local/bin/executable_toggle-kbmap | 0
6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dot_config/i3/config b/dot_config/i3/config @@ -33,10 +33,10 @@ bindsym $mod+o mode "$mode_open" set $mode_open (f)irefox, (k)eepassxc, (n)extcloud, (s)ignal, (t)utanota mode "$mode_open" { bindsym f exec firefox, mode "default" - bindsym k exec "$HOME/.local/bin/,appimage $ai/keepassxc.desktop", mode "default" - bindsym n exec "$HOME/.local/bin/,appimage $ai/nextcloud.desktop", mode "default" + bindsym k exec "$HOME/.local/bin/appimage $ai/keepassxc.desktop", mode "default" + bindsym n exec "$HOME/.local/bin/appimage $ai/nextcloud.desktop", mode "default" bindsym s exec "signal-desktop --no-sandbox", mode "default" - bindsym t exec "$HOME/.local/bin/,appimage $ai/tutanota-desktop.desktop", mode "default" + bindsym t exec "$HOME/.local/bin/appimage $ai/tutanota-desktop.desktop", mode "default" # exit open mode: "Enter" or "Escape" bindsym Return mode "default" @@ -44,7 +44,7 @@ mode "$mode_open" { } # mount/unmount drives -bindsym $mod+m exec "$HOME/.local/bin/,mount-drive" +bindsym $mod+m exec "$HOME/.local/bin/mount-drive" # take screenshot bindsym Print exec "gnome-screenshot -i" @@ -182,7 +182,7 @@ bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcu bindsym $mod+i mode "$mode_system" set $mode_system (l)ock, (e)xit, (r)eboot, (s)hutdown mode "$mode_system" { - bindsym l exec --no-startup-id "$HOME/.local/bin/,i3-lock", mode "default" + bindsym l exec --no-startup-id "$HOME/.local/bin/i3-lock", mode "default" bindsym e exec --no-startup-id "i3-msg exit", mode "default" bindsym r exec --no-startup-id "systemctl reboot", mode "default" bindsym s exec --no-startup-id "systemctl poweroff", mode "default" @@ -193,7 +193,7 @@ mode "$mode_system" { } # Autolock after 5 minutes of inactivity -exec --no-startup-id xautolock -detectsleep -corners 0-00 -time 5 -locker "$HOME/.local/bin/,i3-lock" -notify 30 -notifier "notify-send -u critical -t 10000 'Locking screen in 30 seconds'" +exec --no-startup-id xautolock -detectsleep -corners 0-00 -time 5 -locker "$HOME/.local/bin/i3-lock" -notify 30 -notifier "notify-send -u critical -t 10000 'Locking screen in 30 seconds'" # /session commands }}} @@ -258,10 +258,10 @@ exec --no-startup-id "xcape -e 'Super_L=Escape'" exec --no-startup-id "numlockx" # configure monitors -exec --no-startup-id "$HOME/.local/bin/,configure-monitors" +exec --no-startup-id "$HOME/.local/bin/configure-monitors" # toggle keymap -bindsym $mod+space exec "$HOME/.local/bin/,toggle-kbmap" +bindsym $mod+space exec "$HOME/.local/bin/toggle-kbmap" # /keyboards and monitors }}} diff --git a/dot_local/bin/executable_,appimage b/dot_local/bin/executable_appimage diff --git a/dot_local/bin/executable_,configure-monitors b/dot_local/bin/executable_configure-monitors diff --git a/dot_local/bin/executable_,i3-lock b/dot_local/bin/executable_i3-lock diff --git a/dot_local/bin/executable_,mount-drive b/dot_local/bin/executable_mount-drive diff --git a/dot_local/bin/executable_,toggle-kbmap b/dot_local/bin/executable_toggle-kbmap