2024-11-06 07:57:08 +00:00
|
|
|
#!/bin/bash
|
2025-03-03 09:58:33 +00:00
|
|
|
set -ex
|
|
|
|
|
here="$(realpath "$(dirname "$0")")"
|
|
|
|
|
cd "$here"
|
|
|
|
|
|
|
|
|
|
echo "[Desktop Entry]
|
|
|
|
|
Name=Avvio ciclo
|
|
|
|
|
Exec=bash $here/runme.sh
|
|
|
|
|
Icon=$here/src/ui/imgs/neo.ico
|
|
|
|
|
Terminal=false
|
|
|
|
|
Type=Application
|
2026-06-11 06:38:19 +00:00
|
|
|
Categories=Application;" > "$HOME/.local/share/applications/ST-TEN-16.desktop"
|
2025-03-03 09:58:33 +00:00
|
|
|
|
2026-06-11 06:38:19 +00:00
|
|
|
ln -f -s "$HOME/.local/share/applications/ST-TEN-16.desktop" "$HOME/Scrivania/ST-TEN-16.desktop"
|