mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 20:28:23 +02:00
Uninstall whatever you want yourself now that we have multi-tab uninstalls
12 lines
299 B
Bash
12 lines
299 B
Bash
#!/bin/bash
|
|
|
|
# Copy over Omarchy configs
|
|
mkdir -p ~/.config
|
|
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
|
|
|
# Use default bashrc from Omarchy
|
|
cp ~/.local/share/omarchy/default/bashrc ~/.bashrc
|
|
|
|
# Ensure application directory exists for update-desktop-database
|
|
mkdir -p ~/.local/share/applications
|