Blog/content/posts/2022/linux-color-wallpaper.md

35 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "🔲 Установка PlainColor обоев в Linux DE"
date: 2022-11-19T3:19:58+03:00
draft: false
tags: [linux, tips, kde, gnome]
---
## KDE
Цвето указывается в формате **RGB**, `93,93,93`:
```sh
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.color";
d.currentConfigGroup = Array("Wallpaper", "org.kde.color", "General");
d.writeConfig("Color", "93,93,93");
}'
```
## Мусор
Просто код, не обращайте внимания
```
kwriteconfig5 --file plasma.desktop-appletsrc --group 'Containments' --group '31' --key 'wallpaperplugin' 'org.kde.color'
kwriteconfig5 --file plasma.desktop-appletsrc --group 'Containments' --group '31' --group 'Wallpaper' --group 'org.kde.color' --group 'General' --key 'Color' '255,255,255'
dbus-send --session --type=signal --dest=org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.reloadConfig
dbus-send --session --dest=org.kde.plasmashell --type=method_call /PlasmaShell org.kde.PlasmaShell.reloadConfig
```