Here I will provide my steps for installing archive apps such as .tar.bz2.
tar -xvjf file.tar.bz2
# verbose command: "tar --extract --verbose --bzip2 --file file.tar.bz2"This guide shows how to run Dolphin as root from the terminal.
pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY KDE_SESSION_VERSION=5 KDE_FULL_SESSION=true dolphinOriginally based on daivasmara/external-zsh-theme.
| #!/bin/bash | |
| echo "π Checking Waydroid session..." | |
| if [ "$(waydroid status | awk -F':' '/^Session:/ {print $2}' | xargs)" = "RUNNING" ]; then | |
| echo "βΉοΈ Waydroid session already running" | |
| else | |
| echo "βΆοΈ Starting Waydroid session..." | |
| nohup waydroid session start >/dev/null 2>&1 & |