diff options
| -rw-r--r-- | .fvwm2rc | 8 | ||||
| -rwxr-xr-x | bin/slup | 11 | ||||
| -rwxr-xr-x | bin/update_slack_kernel | 5 |
3 files changed, 20 insertions, 4 deletions
@@ -98,14 +98,14 @@ AddToMenu "Desktop-Apps" + "&Chromium" Exec exec chromium + "&Discord" Exec exec discord + "&Firefox" Exec exec firefox -#+ "&Google Chrome" Exec exec google-chrome-stable ++ "&Google Chrome" Exec exec google-chrome-stable #+ "&Keybase" Exec exec keybase-gui #+ "&LibreOffice" Exec exec libreoffice ++ "Sea&Monkey" Exec exec seamonkey + "&RSS Guard" Exec exec rssguard -n + "S&ignal" Exec exec signal-desktop -+ "&Slack" Exec exec slack -+ "Sea&Monkey" Exec exec seamonkey -+ "&Zoom" Exec exec zoom +#+ "&Slack" Exec exec slack +#+ "&Zoom" Exec exec zoom DestroyMenu "Settings" AddToMenu "Settings" diff --git a/bin/slup b/bin/slup new file mode 100755 index 0000000..72baede --- /dev/null +++ b/bin/slup @@ -0,0 +1,11 @@ +#!/bin/sh + +# Slackware packages update. + +[ "$USER" = root ] || exec sudo "$0" "$@" + +slackpkg -batch=on update +slackpkg upgrade-all + +[ /boot/vmlinuz -nt /boot/initrd.gz ] && + geninitrd && cd /boot && cp -p vmlinuz initrd.gz efi/EFI/Slackware/ diff --git a/bin/update_slack_kernel b/bin/update_slack_kernel new file mode 100755 index 0000000..90eac82 --- /dev/null +++ b/bin/update_slack_kernel @@ -0,0 +1,5 @@ +#!/bin/sh + +[ "$USER" = root ] || exec sudo "$0" "$@" + +geninitrd && cd /boot && cp -p vmlinuz initrd.gz efi/EFI/Slackware/ |
