mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-07 12:40:55 +02:00
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/"
|