15 lines
496 B
Bash
Executable File
15 lines
496 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Open the Omarchy background switcher
|
|
# omarchy:group=theme
|
|
# omarchy:name=bg-switcher
|
|
# omarchy:aliases=omarchy background
|
|
|
|
theme_name=$(cat "$HOME/.local/state/omarchy/current/theme.name" 2>/dev/null)
|
|
current_background=$(readlink -f "$HOME/.local/state/omarchy/current/background" 2>/dev/null)
|
|
|
|
omarchy-menu-images \
|
|
--selected "$current_background" \
|
|
"$HOME/.local/state/omarchy/current/theme/backgrounds" \
|
|
"$HOME/.config/omarchy/backgrounds/$theme_name"
|