Files
arthur-os/bin/omarchy-theme-bg-install
2026-04-28 12:03:46 -04:00

10 lines
299 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Open the current theme's user background folder
CURRENT_THEME_NAME=$(cat "$HOME/.config/omarchy/current/theme.name")
THEME_USER_BACKGROUNDS="$HOME/.config/omarchy/backgrounds/$CURRENT_THEME_NAME"
mkdir -p "$THEME_USER_BACKGROUNDS"
nautilus "$THEME_USER_BACKGROUNDS"