14 lines
320 B
Bash
14 lines
320 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Install the ONCE service, enable its background service, and launch the TUI.
|
||
|
|
# archypr:requires-sudo=true
|
||
|
|
|
||
|
|
echo "Installing ONCE..."
|
||
|
|
archypr-kg-add once-bin
|
||
|
|
|
||
|
|
echo "Enabling ONCE background service..."
|
||
|
|
sudo systemctl enable --now once-background.service
|
||
|
|
|
||
|
|
echo -e "\nLaunching ONCE..."
|
||
|
|
once
|