60
edits
(Marked this version for translation) |
(Move Desktop section under Appearance; Add polkit rules; Remove deprecated kwin-lowlatency) Tags: Mobile web edit Mobile edit |
||
Line 15: | Line 15: | ||
=Appearance= <!--T:4--> | =Appearance= <!--T:4--> | ||
====Desktop Settings==== <!--T:15--> | |||
<!--T:16--> | |||
To reach desktop settings right click on the desktop and select ''Configure Desktop''. If that option isn't available (it is configurable), you can use the keyboard shortcut {{ic|Alt+D,Alt+S}} | |||
<!--T:18--> | |||
'''Layout'''<br /> | |||
Under the ''Wallpaper'' tab there is a 'Layout' option. {{ic|Desktop Settings -> Wallpaper -> Layout}}<br /> | |||
"Folder View" will allow you to place and interact with items on the desktop.<br /> | |||
If you do not use desktop icons (or if you need encouragement for better organization) you can use "Desktop".<br /> | |||
"Desktop" layout will not allow items on the desktop and results in almost 20 MiB of memory savings in plasmashell. | |||
Line 34: | Line 47: | ||
See its dedicated page [[Dolphin|here]]. | See its dedicated page [[Dolphin|here]]. | ||
<!--T: | ====Single Click vs Double Click==== <!--T:21--> | ||
<!--T:22--> | |||
In order to select between single and double click for opening files and folders you can use System Settings.<br /> | |||
{{ic|System Settings -> Workspace -> General Behavior -> "Clicking files or folders"}} | |||
====Power==== | |||
=====Disable Hibernate===== | |||
Hibernation can be disabled and it's menu entries hidden with the drop-in file ''/etc/polkit-1/rules.d/99-disable-hibernate.rules''. | |||
{{File|file=/etc/polkit-1/rules.d/99-disable-hibernate.rules|content= | |||
<pre> | |||
// Disable hibernate for all users | |||
polkit.addRule(function(action, subject) { | |||
if ((action.id == "org.freedesktop.login1.hibernate")) { | |||
return polkit.Result.NO; | |||
} | |||
}); | |||
polkit.addRule(function(action, subject) { | |||
if ((action.id == "org.freedesktop.login1.hibernate-multiple-sessions")) { | |||
return polkit.Result.NO; | |||
} | |||
}); | |||
</pre> | |||
}} | |||
=====Disable Suspend===== | |||
Suspend can be disabled and it's menu entries hidden with the drop-in file ''/etc/polkit-1/rules.d/99-disable-suspend.rules''. | |||
{{File|file=/etc/polkit-1/rules.d/99-disable-suspend.rules|content= | |||
<pre> | |||
{{ | // Disable suspend for all users | ||
polkit.addRule(function(action, subject) { | |||
if ((action.id == "org.freedesktop.login1.suspend")) { | |||
return polkit.Result.NO; | |||
} | |||
}); | |||
polkit.addRule(function(action, subject) { | |||
if ((action.id == "org.freedesktop.login1.suspend-multiple-sessions")) { | |||
return polkit.Result.NO; | |||
} | |||
}); | |||
</pre> | |||
}} | |||