All checks were successful
Update PKGBUILD version / update-pkgver (push) Successful in 2s
Wraps paru in a script that waits for keypress after completion, preventing foot from closing immediately. Used as Waybar on-click action for the updates module.
8 lines
227 B
Bash
Executable File
8 lines
227 B
Bash
Executable File
#!/usr/bin/bash
|
|
# ABOUTME: Interactive system update wrapper for use as Waybar on-click action.
|
|
# ABOUTME: Runs paru and waits for keypress before closing the terminal.
|
|
|
|
paru
|
|
echo
|
|
read -n 1 -s -r -p "Press any key to close..."
|