Fix path-handling for user-local applications
Getty Ritter
7 years ago
| 16 | 16 |
# this is probably not right, in the long term!
|
| 17 | 17 |
XDG_APP_DIRS = [
|
| 18 | 18 |
'/usr/share/applications',
|
| 19 | |
os.path.join(os.getenv('HOME'), '/.local/share/applications'),
|
| 19 |
os.path.join(os.getenv('HOME'), '.local/share/applications'),
|
| 20 | 20 |
]
|
| 21 | 21 |
|
| 22 | 22 |
class DesktopEntry(NamedTuple):
|