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
|