Rename more scripts
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
410d0b33c6
commit
469f519890
7 changed files with 16 additions and 14 deletions
|
@ -11,6 +11,8 @@ Lint:
|
||||||
- shellcheck ./system/.config/custom/keyleds
|
- shellcheck ./system/.config/custom/keyleds
|
||||||
- shellcheck ./system/.config/custom/aliases
|
- shellcheck ./system/.config/custom/aliases
|
||||||
- shellcheck ./system/.config/custom/env
|
- shellcheck ./system/.config/custom/env
|
||||||
|
- shellcheck ./system/.config/polybar/launch
|
||||||
|
- shellcheck ./system/.config/polybar/scripts/update-count
|
||||||
- shellcheck ./system/.config/X11/xinitrc
|
- shellcheck ./system/.config/X11/xinitrc
|
||||||
- shellcheck ./system/.config/zsh/.zlogout
|
- shellcheck ./system/.config/zsh/.zlogout
|
||||||
- shellcheck ./system/.config/zsh/.zprofile
|
- shellcheck ./system/.config/zsh/.zprofile
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
*/30 * * * * grive -d -p $HOME/Documents/ >> $HOME/.local/log/cron.log
|
*/30 * * * * grive -d -p $HOME/Documents/ >> $HOME/.local/log/cron.log
|
||||||
|
|
||||||
# Sync pacman databases every 30 minutes
|
# Sync pacman databases every 30 minutes
|
||||||
*/30 * * * * sudo $HOME/.local/bin/sync_package_databases >> $HOME/.local/log/cron.log
|
*/30 * * * * sudo $HOME/.local/bin/sync-package >> $HOME/.local/log/cron.log
|
||||||
|
|
||||||
# Synchronize notes every 5 minutes
|
# Synchronize notes every 5 minutes
|
||||||
*/5 * * * * $HOME/.local/bin/sync_notes >> $HOME/.local/log/cron.log
|
*/5 * * * * $HOME/.local/bin/sync-notes >> $HOME/.local/log/cron.log
|
||||||
|
|
|
@ -202,8 +202,8 @@ bindsym XF86Sleep exec --no-startup-id screenlock
|
||||||
# Volume controls
|
# Volume controls
|
||||||
bindsym XF86AudioMute exec --no-startup-id pamixer -t
|
bindsym XF86AudioMute exec --no-startup-id pamixer -t
|
||||||
bindsym $mod+m exec --no-startup-id pamixer -t
|
bindsym $mod+m exec --no-startup-id pamixer -t
|
||||||
bindsym XF86AudioRaiseVolume exec --no-startup-id increase_volume
|
bindsym XF86AudioRaiseVolume exec --no-startup-id increase-volume
|
||||||
bindsym $mod+KP_Add exec --no-startup-id increase_volume
|
bindsym $mod+KP_Add exec --no-startup-id increase-volume
|
||||||
bindsym XF86AudioLowerVolume exec --no-startup-id pamixer -d 5 --allow-boost
|
bindsym XF86AudioLowerVolume exec --no-startup-id pamixer -d 5 --allow-boost
|
||||||
bindsym $mod+KP_Subtract exec --no-startup-id pamixer -d 5 --allow-boost
|
bindsym $mod+KP_Subtract exec --no-startup-id pamixer -d 5 --allow-boost
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# SCRIPT NAME:
|
# SCRIPT NAME:
|
||||||
# increase_volume
|
# increase-volume
|
||||||
#
|
#
|
||||||
# AUTHOR:
|
# AUTHOR:
|
||||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
# using custom i3 keybindings.
|
# using custom i3 keybindings.
|
||||||
#
|
#
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# ./increase_volume
|
# ./increase-volume
|
||||||
if [[ $(pamixer --get-volume) -lt 150 ]]; then
|
if [[ $(pamixer --get-volume) -lt 150 ]]; then
|
||||||
pamixer -i 5 --allow-boost
|
pamixer -i 5 --allow-boost
|
||||||
fi
|
fi
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# SCRIPT NAME:
|
# SCRIPT NAME:
|
||||||
# submodule_update
|
# submodule-update
|
||||||
#
|
#
|
||||||
# AUTHOR:
|
# AUTHOR:
|
||||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
# new commit and pushes it. Only when there are no staged changes pending.
|
# new commit and pushes it. Only when there are no staged changes pending.
|
||||||
#
|
#
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# ./submodule_update
|
# ./submodule-update
|
||||||
. utils
|
. utils
|
||||||
|
|
||||||
START_DIR=$(pwd)
|
START_DIR=$(pwd)
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# SCRIPT NAME:
|
# SCRIPT NAME:
|
||||||
# sync_notes
|
# sync-notes
|
||||||
#
|
#
|
||||||
# AUTHOR:
|
# AUTHOR:
|
||||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||||
|
@ -10,10 +10,10 @@
|
||||||
# Sync notes in ~/Notes using git
|
# Sync notes in ~/Notes using git
|
||||||
#
|
#
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# ./sync_notes
|
# ./sync-notes
|
||||||
. /home/severin/.local/bin/utils
|
. /home/severin/.local/bin/utils
|
||||||
|
|
||||||
print_time_log "sync_notes" "Synchronizing notes"
|
print_time_log "sync-notes" "Synchronizing notes"
|
||||||
|
|
||||||
cd "/home/severin/Notes" || exit
|
cd "/home/severin/Notes" || exit
|
||||||
git pull > /dev/null 2>&1
|
git pull > /dev/null 2>&1
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# SCRIPT NAME:
|
# SCRIPT NAME:
|
||||||
# sync_package_databases
|
# sync-packages
|
||||||
#
|
#
|
||||||
# AUTHOR:
|
# AUTHOR:
|
||||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||||
|
@ -10,8 +10,8 @@
|
||||||
# Syncs the package database of pacman
|
# Syncs the package database of pacman
|
||||||
#
|
#
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# ./sync_package_databases
|
# ./sync-packages
|
||||||
. /home/severin/.local/bin/utils
|
. /home/severin/.local/bin/utils
|
||||||
|
|
||||||
print_time_log "sync_package_databases" "Syncing databases"
|
print_time_log "sync-packages" "Syncing databases"
|
||||||
yay -Syy > /dev/null 2>&1
|
yay -Syy > /dev/null 2>&1
|
Loading…
Add table
Add a link
Reference in a new issue