mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
11 lines
394 B
Bash
Executable File
11 lines
394 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copy and sync icon files
|
|
sudo cp ~/.local/share/omarchy/applications/icons/*.png /usr/share/icons/hicolor/48x48/apps/
|
|
sudo gtk-update-icon-cache /usr/share/icons/hicolor &>/dev/null
|
|
|
|
# Copy .desktop declarations
|
|
mkdir -p ~/.local/share/applications
|
|
cp ~/.local/share/omarchy/applications/*.desktop ~/.local/share/applications/
|
|
update-desktop-database ~/.local/share/applications
|