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 dolphin
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 dolphin
Originally 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 & |