18 lines
488 B
Bash
18 lines
488 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
|
|
|
|
# If bare install, allow a way for its exclusions to not get added in updates
|
|
if [ -n "$OMARCHY_BARE" ]; then
|
|
mkdir -p ~/.local/state/omarchy
|
|
touch ~/.local/state/omarchy/bare.mode
|
|
fi
|