Here I want to give my fastfetch style. π€
π‘οΈ
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 & |