mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Add omarchy CLI * Remove outdated or internal * Add bash completions for command * Add omarchy command documentation * Add missing docs * Correct to what's now right * Fix tests --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
37 lines
970 B
Bash
Executable File
37 lines
970 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Remove preinstalled Omarchy applications (web apps, TUIs, and selected packages).
|
|
|
|
if gum confirm "Are you sure you want to remove all preinstalled web apps, TUI wrappers, and desktop applications?"; then
|
|
echo -e "Removing preinstalled Omarchy applications...\n"
|
|
|
|
omarchy-webapp-remove-all
|
|
omarchy-tui-remove-all
|
|
|
|
cp ~/.config/hypr/bindings.conf ~/.config/hypr/bindings.conf.bak
|
|
cp "$OMARCHY_PATH/default/hypr/plain-bindings.conf" ~/.config/hypr/bindings.conf
|
|
hyprctl reload
|
|
|
|
# Remove npx stubs
|
|
rm -f ~/.local/bin/codex ~/.local/bin/gemini ~/.local/bin/copilot \
|
|
~/.local/bin/opencode ~/.local/bin/playwright-cli ~/.local/bin/pi
|
|
|
|
omarchy-pkg-drop \
|
|
aether \
|
|
cliamp \
|
|
typora \
|
|
spotify \
|
|
libreoffice-fresh \
|
|
1password-beta \
|
|
1password-cli \
|
|
xournalpp \
|
|
signal-desktop \
|
|
pinta \
|
|
obsidian \
|
|
obs-studio \
|
|
kdenlive \
|
|
lazydocker \
|
|
opencode \
|
|
claude-code
|
|
fi
|