mirror of
https://github.com/MeexReay/bRAC.git
synced 2025-09-13 15:37:40 +03:00
16 lines
382 B
Bash
Executable File
16 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
version=$(grep -m1 '^version' Cargo.toml | sed -E 's/version *= *"(.*)"/\1/')
|
|
|
|
echo "[Desktop Entry]"
|
|
echo "Name=bRAC"
|
|
echo "Version=$version"
|
|
echo "Type=Application"
|
|
echo "Comment=better RAC client"
|
|
echo "Icon=ru.themixray.bRAC"
|
|
echo "Exec=/usr/bin/bRAC"
|
|
echo "Categories=Network;"
|
|
echo "StartupNotify=true"
|
|
echo "Terminal=false"
|
|
echo "X-GNOME-UsesNotifications=true"
|