7 lines
134 B
Bash
Executable File
7 lines
134 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install the desktop entry
|
|
if hash update-desktop-database 2>/dev/null; then
|
|
update-desktop-database
|
|
fi
|