mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
19 lines
516 B
Bash
19 lines
516 B
Bash
OMARCHY_DESCRIPTION="Config Files"
|
|
|
|
omarchy_install() {
|
|
# 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
|
|
}
|
|
|
|
omarchy_verify() {
|
|
[[ -d ~/.config ]] || add_error "Config directory missing"
|
|
[[ -f ~/.bashrc ]] || add_error "Bashrc file missing"
|
|
|
|
[[ -d ~/.config/hypr ]] || add_error "Hypr config missing"
|
|
[[ -d ~/.config/waybar ]] || add_error "Waybar config missing"
|
|
}
|