-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #548 from jonpetri/jon/add-autostart-desktop-file
Enable application autostart across all Linux desktop managers
- Loading branch information
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=Workrave | ||
Comment=Assists in the prevention and recovery of Repetitive Strain Injury (RSI) | ||
Categories=Utility;GTK;Accessibility; | ||
Exec=workrave | ||
TryExec=workrave | ||
Icon=workrave | ||
Terminal=false | ||
|
||
# Hidden | ||
# ------ | ||
# In GNOME environments, indicates to the desktop environment whether the | ||
# application should be displayed in the autostart settings UI. If | ||
# hidden, autostart is also disabled. The user can enable or disable | ||
# autostart only if it is not hidden. | ||
# | ||
# In non-GNOME environments, `Hidden` means "disable". It indicates to the | ||
# desktop environment the default autostart enabling status when the | ||
# application is installed. It doesn't hide the application in the autostart | ||
# settings UI. | ||
# - `Hidden=false` means that the desktop environment will enable autostart as | ||
# soon as the application is installed. | ||
# - `Hidden=true` means that the desktop environment will show the autostart | ||
# feature as available to the user, but not enabled. | ||
# In both cases the user can enable or disable autostart as desired. | ||
Hidden=false | ||
|
||
# X-GNOME-Autostart-enabled | ||
# ------------------------- | ||
# In GNOME environments, indicates to the desktop environment the default | ||
# autostart status when the application is installed. The user can enable or | ||
# disable autostart as desired. | ||
# | ||
# In non-GNOME environments, this key is ignored. | ||
X-GNOME-Autostart-enabled=true |