mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Refresh the current theme from its templates.
|
|
|
|
THEME_NAME_PATH="$HOME/.config/omarchy/current/theme.name"
|
|
|
|
if [[ -f $THEME_NAME_PATH ]]; then
|
|
OMARCHY_THEME_SKIP_BACKGROUND=1 omarchy-theme-set "$(cat $THEME_NAME_PATH)"
|
|
fi
|