2025-06-25 11:05:14 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-06-25 11:39:17 -07:00
|
|
|
# Copy and sync icon files
|
2025-06-25 16:33:57 -07:00
|
|
|
sudo gtk-update-icon-cache /usr/share/icons/hicolor &>/dev/null
|
2025-06-25 12:00:42 -07:00
|
|
|
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
|
2025-06-25 11:39:17 -07:00
|
|
|
|
|
|
|
# Copy .desktop declarations
|
2025-06-25 16:23:27 -07:00
|
|
|
mkdir -p ~/.local/share/applications
|
2025-06-25 11:39:17 -07:00
|
|
|
cp ~/.local/share/omarchy/applications/*.desktop ~/.local/share/applications/
|
|
|
|
update-desktop-database ~/.local/share/applications
|