mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
14 lines
492 B
Bash
Executable File
14 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Ensure necessary directories are present
|
|
mkdir -p ~/.local/share/icons/hicolor/scalable/apps/
|
|
mkdir -p ~/.local/share/applications/
|
|
|
|
# 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
|
|
cp ~/.local/share/omarchy/applications/*.desktop ~/.local/share/applications/
|
|
update-desktop-database ~/.local/share/applications
|