5 lines
188 B
Bash
5 lines
188 B
Bash
# Copy all bundled icons to the applications/icons directory
|
|
ICON_DIR="$HOME/.local/share/applications/icons"
|
|
mkdir -p "$ICON_DIR"
|
|
cp "$OMARCHY_PATH"/applications/icons/*.png "$ICON_DIR/"
|