We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 524add6 commit ed09f82Copy full SHA for ed09f82
.github/workflows/rust.yml
@@ -92,10 +92,17 @@ jobs:
92
Categories=Game;Utility;
93
EOF
94
95
+ # Create AppRun wrapper script to set GDK_BACKEND=x11
96
+ cat > AppDir/AppRun << 'EOF'
97
+ #!/bin/sh
98
+ export GDK_BACKEND=x11
99
+ exec "$(dirname "$(readlink -f "$0")")/usr/bin/cele-mod" "$@"
100
+ EOF
101
+ chmod +x AppDir/AppRun
102
+
103
# Create symlinks
104
ln -s usr/share/applications/celemod.desktop AppDir/celemod.desktop
105
ln -s usr/share/icons/hicolor/256x256/apps/celemod.png AppDir/celemod.png
- ln -s usr/bin/cele-mod AppDir/AppRun
106
- name: Build AppImage
107
run: |
108
ARCH=x86_64 ./linuxdeploy-x86_64.AppImage --appdir AppDir --output appimage || true
0 commit comments