Need to copy configs from $OMARCHY_PATH so it'll work with the dev link

This commit is contained in:
David Heinemeier Hansson
2026-06-22 18:30:16 +02:00
parent 383423036f
commit 62ada9e9ec
4 changed files with 47 additions and 7 deletions
+3 -3
View File
@@ -58,7 +58,7 @@ This directory contains Omarchy's source files managed by git. Any changes will
**Reading `/usr/share/omarchy/` is SAFE and useful** - do it freely to:
- Understand how omarchy commands work: `omarchy theme set --help` or `cat $(which omarchy-theme-set)`
- See default configs before customizing: `cat /usr/share/omarchy/config/omarchy/shell.json`
- See default configs before customizing: `cat "$OMARCHY_PATH/config/omarchy/shell.json"`
- Check stock theme files to copy for customization
- Reference default hyprland settings: `cat /usr/share/omarchy/default/hypr/*`
@@ -154,7 +154,7 @@ inside a single long-running Quickshell process (`omarchy-shell`).
```
~/.config/omarchy/shell.json # User overrides: bar.position, bar.layout, plugins[]
/usr/share/omarchy/config/omarchy/shell.json # Canonical defaults
$OMARCHY_PATH/config/omarchy/shell.json # Canonical defaults
```
The shell hot-reloads `shell.json` on save — no restart needed for layout
@@ -243,7 +243,7 @@ omarchy refresh hyprland
# The refresh command:
# 1. Backs up current config with timestamp
# 2. Copies default from /usr/share/omarchy/config/
# 2. Copies default from $OMARCHY_PATH/config/
# 3. Restarts the component
```