mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
13 lines
343 B
Bash
Executable File
13 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Show current background
|
|
# omarchy:examples=omarchy theme bg current
|
|
|
|
BACKGROUND_PATH=$(readlink -f "$HOME/.config/omarchy/current/background" 2>/dev/null)
|
|
|
|
if [[ -n $BACKGROUND_PATH ]]; then
|
|
basename -- "$BACKGROUND_PATH" | perl -pe 's/\.[^.]+$//; s/^\d+-//; s/-/ /g; s/\b(\w)/\U$1/g'
|
|
else
|
|
echo "Unknown"
|
|
fi
|