mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# kwriteconfig5
|
|
|
|
> Write KConfig entries for KDE Plasma.
|
|
> More information: <https://userbase.kde.org/KDE_System_Administration/Configuration_Files>.
|
|
|
|
- Set a global configuration key:
|
|
|
|
`kwriteconfig5 --group {{group_name}} --key {{key}} {{value}}`
|
|
|
|
- Set a key in a specific configuration file:
|
|
|
|
`kwriteconfig5 --file {{path/to/file}} --group {{group_name}} --key {{key}} {{value}}`
|
|
|
|
- Delete a key:
|
|
|
|
`kwriteconfig5 --group {{group_name}} --key {{key}} --delete`
|
|
|
|
- Use systemd to start the Plasma session when available:
|
|
|
|
`kwriteconfig5 --file {{startkderc}} --group {{General}} --key {{systemdBoot}} {{true}}`
|
|
|
|
- Hide the title bar when a window is maximized (like Ubuntu):
|
|
|
|
`kwriteconfig5 --file {{~/.config/kwinrc}} --group {{Windows}} --key {{BorderlessMaximizedWindows}} {{true}}`
|
|
|
|
- Configure KRunner to open with the Meta (Command/Windows) global hotkey:
|
|
|
|
`kwriteconfig5 --file {{~/.config/kwinrc}} --group {{ModifierOnlyShortcuts}} --key {{Meta}} "{{org.kde.kglobalaccel,/component/krunner_desktop,org.kde.kglobalaccel.Component,invokeShortcut,_launch}}"`
|
|
|
|
- Display help:
|
|
|
|
`kwriteconfig5 --help`
|