Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/xdg/Config.py: 52%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Functions to configure Basic Settings
3"""
5language = "C"
6windowmanager = None
7icon_theme = "hicolor"
8icon_size = 48
9cache_time = 5
10root_mode = False
12def setWindowManager(wm):
13 global windowmanager
14 windowmanager = wm
16def setIconTheme(theme):
17 global icon_theme
18 icon_theme = theme
19 import xdg.IconTheme
20 xdg.IconTheme.themes = []
22def setIconSize(size):
23 global icon_size
24 icon_size = size
26def setCacheTime(time):
27 global cache_time
28 cache_time = time
30def setLocale(lang):
31 import locale
32 lang = locale.normalize(lang)
33 locale.setlocale(locale.LC_ALL, lang)
34 import xdg.Locale
35 xdg.Locale.update(lang)
37def setRootMode(boolean):
38 global root_mode
39 root_mode = boolean