-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomandi
30 lines (25 loc) · 1.18 KB
/
comandi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//Cambiare tema kvantum
light: kvantummanager --set ChromeOS
dark: kvantummanager --set ChromeOS-dark
//Cambiare tema globale
light: lookandfeeltool -a com.github.vinceliuice.ChromeOS-light
dark: lookandfeeltool -a com.github.vinceliuice.ChromeOS-dark
//Cambiare lo sfondo
light: dbus-send --session --dest=org.kde.plasmashell --type=method_call \
/PlasmaShell org.kde.PlasmaShell.evaluateScript 'string:
var Desktops = desktops();
for (i=0;i<Desktops.length;i++) {
d = Desktops[i];
d.wallpaperPlugin = "org.kde.image";
d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General");
d.writeConfig("Image", "/home/nomec/Theme switcher/Sfondi/light.jpg");
}'
dark: dbus-send --session --dest=org.kde.plasmashell --type=method_call \
/PlasmaShell org.kde.PlasmaShell.evaluateScript 'string:
var Desktops = desktops();
for (i=0;i<Desktops.length;i++) {
d = Desktops[i];
d.wallpaperPlugin = "org.kde.image";
d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General");
d.writeConfig("Image", "/home/nomec/Theme switcher/Sfondi/dark.jpg");
}'