mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00

* Change launcher from wofi -> walker
* Add migration
* More wofi -> walker locations
* Add rose pine theme
* Rename refresh script
* Minor improvements to walker + add uwsm
* Back out running as service
* Make these executable
* Add plugins dir for now to resolve open issue 355 from v0.13.0 release
* Replace pavucontrol with wiremix (#225)
Add to install
* Revert "Replace pavucontrol with wiremix (#225)"
This reverts commit 620b397859
.
* Fix reference
* Add libqalculate so calc works out of the box
* Actually add libqalculate
* Re-add media
* Add catppuccin-latte
* Final cleanup
* Remove partially baked theme
* Remove failing migration
* Remove failing migration
* Fix refresh script
* Simplify css setup
* Rearrange walker theme files
* Change theme name
* Remove unnecessary file
* Clear everything
* Only worry about the config file now
* Disable load in animation for walker
* Run walker as service
* Make sure we have fresh package db
* Add keybindings theme
* Remove history
* Explain section
* Assume wofi is gone, only run if walker isn't there
* Move as the latest
---------
Co-authored-by: David Heinemeier Hansson <david@hey.com>
Co-authored-by: Roeland <roel4d@webding.org>
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
THEMES_DIR="$HOME/.config/omarchy/themes/"
|
|
CURRENT_THEME_DIR="$HOME/.config/omarchy/current/theme"
|
|
CURRENT_THEME_NAME=$(basename "$(realpath "$CURRENT_THEME_DIR")")
|
|
|
|
# Build themes list with pretty display names
|
|
mapfile -t themes < <(
|
|
find "$THEMES_DIR" -mindepth 1 -maxdepth 1 \( -type d -o -type l \) | while read -r path; do
|
|
filename=$(basename "$path")
|
|
display_name=$(echo "$filename" | sed -E 's/(^|-)([a-z])/\1\u\2/g; s/-/ /g')
|
|
|
|
if [[ "$filename" == "$CURRENT_THEME_NAME" ]]; then
|
|
echo "<i>$display_name</i>"
|
|
else
|
|
echo "$display_name"
|
|
fi
|
|
done | sort
|
|
)
|
|
|
|
# Show Walker menu
|
|
selection=$(printf '%s\n' "${themes[@]}" | walker --dmenu --theme dmenu_250 2>/dev/null)
|
|
|
|
# Remove any Pango markup before converting back to filename
|
|
clean_selection=$(echo "$selection" | sed -E 's/<[^>]+>//g')
|
|
|
|
# Convert to lowercase and dash-separated: "Tokyo Night" -> "tokyo-night"
|
|
selected_theme=$(echo "$clean_selection" | tr '[:upper:]' '[:lower:]' | tr ' ' '-')
|
|
|
|
# Apply the selected theme
|
|
"$HOME/.local/share/omarchy/bin/omarchy-theme-set" "$selected_theme"
|