Compare commits

..

No commits in common. "d1b53c92ede78a4068a6e7dbb5cf887712b51aac" and "9367fef8e91ebc59bac133abd71dffb1992dee4a" have entirely different histories.

2 changed files with 10 additions and 8 deletions

4
bin/update-grub Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
grub-mkconfig \
-o /boot/grub/grub.cfg

View file

@ -1,26 +1,24 @@
#!/bin/bash #!/bin/bash
# Variable # Variable
commands_d="${HOME}/.local/share/updateall/commands.d" commands_d="$HOME/.local/share/updateall/commands.d"
# Function # Function
# Create a clear separator, adapts to the screen size # Create a clear separator, adapts to the screen size
function separator { function separator {
local separator="" local char="${2:-=}"
local separator cols
local name="$1" ; shift
local char="${1:-=}"; shift
(( cols = $(tput cols) / 3 )) (( cols = $(tput cols) / 3 ))
while [[ ${#separator} -le "$cols" ]]; do while [[ ${#separator} -le $cols ]]; do
separator+="$char" separator+="$char"
done done
printf '\n%s\n\t%s\n%s\n' "$separator" "$name" "$separator" printf '\n%s\n\t%s\n%s\n' "$separator" "$1" "$separator"
} }
# Loop # Loop
for pm in "${commands_d}/"*; do for pm in "$commands_d/"*; do
separator "$(basename "$pm")" separator "$(basename "$pm")"
source "$pm" source "$pm"
done done