Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
18 lines
524 B
Bash
Executable File
18 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Ensure default application launchers and mise wrappers are installed.
|
|
|
|
# Copy .desktop declarations
|
|
mkdir -p ~/.local/share/applications
|
|
cp "$OMARCHY_PATH"/applications/*.desktop ~/.local/share/applications/
|
|
|
|
if omarchy-cmd-present alacritty; then
|
|
cp "$OMARCHY_PATH/default/alacritty/Alacritty.desktop" ~/.local/share/applications/
|
|
fi
|
|
|
|
if [[ -f "$OMARCHY_PATH/install/user/mise.sh" ]]; then
|
|
bash "$OMARCHY_PATH/install/user/mise.sh"
|
|
fi
|
|
|
|
update-desktop-database ~/.local/share/applications
|