summaryrefslogtreecommitdiff
path: root/test/test-desktop-write.py
blob: 73a7c1c11507c0302b595de22214b9c2b21d3133 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
from xdg.DesktopEntry import *

import os, sys

test = DesktopEntry()
test.parse("/usr/share/applications/gedit.desktop")
test.removeKey("Name")
test.addGroup("Hallo")
test.set("key", "value", "Hallo")
test.write("test.desktop")