From 0e558f7766bff25ee93c79b480e221c66e7cb7d0 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sun, 11 Jun 2023 10:00:30 -0400 Subject: [PATCH] Add better .desktop example Include more of the common options and provide a better example for (potentially) more complicated custom .desktop apps. --- framework_fedora.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/framework_fedora.md b/framework_fedora.md index b54694b..783de19 100644 --- a/framework_fedora.md +++ b/framework_fedora.md @@ -271,13 +271,16 @@ sudo systemctl enable btrbk.timer 2. You need to `dnf install xrandr` to launch any modpacks 3. You can create a desktop icon by putting this at ~/.local/share/applications/*.desktop: -``` +```conf [Desktop Entry] -Encoding=UTF-8 -Name=Technic Launcher -Exec=/usr/bin/java -jar /home/ducoterra/Applications/TechnicLauncher.jar -Icon=/home/ducoterra/.icons/minecraft-launcher.png Type=Application +Version=1.0 +Name=Minecraft +Comment=Minecraft Launcher +Path=/home/ducoterra/Applications +Exec=minecraft-launcher +Icon=/home/ducoterra/Icons/minecraft-launcher.png +Terminal=false Categories=Games; ```