mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
Now that we have aliases depending on it. But also include it and opencode in the removal of preinstalls.
33 lines
847 B
Bash
Executable File
33 lines
847 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remove preinstalled Omarchy applications (web apps, TUIs, and selected packages).
|
|
# This removes all web apps, TUIs, plus specific desktop applications.
|
|
|
|
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
|
|
|
|
omarchy-pkg-drop \
|
|
aether \
|
|
typora \
|
|
spotify \
|
|
libreoffice-fresh \
|
|
1password-beta \
|
|
1password-cli \
|
|
xournalpp \
|
|
signal-desktop \
|
|
pinta \
|
|
obsidian \
|
|
obs-studio \
|
|
kdenlive \
|
|
lazydocker \
|
|
opencode \
|
|
claude-code
|
|
fi
|