mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
11 lines
308 B
Bash
Executable File
11 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Cache background switcher thumbnails for the current theme
|
|
|
|
theme_name=$(cat "$HOME/.config/omarchy/current/theme.name" 2>/dev/null)
|
|
|
|
omarchy-menu-images \
|
|
--cache-only \
|
|
"$HOME/.config/omarchy/current/theme/backgrounds" \
|
|
"$HOME/.config/omarchy/backgrounds/$theme_name"
|