mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Install Zed Editor with omazed for themes syncing * Move Zed theme switching into Omarchy * Launch zed after install * revert * forgot omazed! * omazed is now on OPR --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
12 lines
213 B
Bash
Executable File
12 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install Zed Editor and omazed to use the current Omarchy theme.
|
|
|
|
echo "Installing Zed Editor..."
|
|
omarchy-pkg-add zed omazed
|
|
|
|
# Apply Omarchy theme to Zed
|
|
omazed setup
|
|
|
|
setsid gtk-launch dev.zed.Zed
|