Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit baed164

Browse files
author
Bart
committed
Removed 'local' from .desktop path
1 parent 69531df commit baed164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DesktopFileManager/DesktopFileManager.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class DesktopFileManager {
55

66
public File get_backup_desktop_config_file () {
77
var backupFile = File.new_for_path (
8-
"/usr/local/share/applications/com.github.bartzaalberg.bookmark-manager.backup"
8+
"/usr/share/applications/com.github.bartzaalberg.bookmark-manager.backup"
99
);
1010
if (!backupFile.query_exists ()) {
1111
try {
@@ -20,7 +20,7 @@ public class DesktopFileManager {
2020
}
2121

2222
public File get_desktop_config_file () {
23-
var file = File.new_for_path ("/usr/local/share/applications/com.github.bartzaalberg.bookmark-manager.desktop");
23+
var file = File.new_for_path ("/usr/share/applications/com.github.bartzaalberg.bookmark-manager.desktop");
2424
if (!file.query_exists ()) {
2525
try {
2626
file.create (FileCreateFlags.REPLACE_DESTINATION, null);

0 commit comments

Comments
 (0)