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

10 lines
222 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-set "$(cat $THEME_NAME_PATH)"
fi