Manjaro Difference between revisions of "KDE/en"

Difference between revisions of "KDE/en"

From Manjaro
(Updating to match new version of source page)
 
(Updating to match new version of source page)
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
=Appearance=
=Appearance=


====HiDPI====


If your screen has a relatively large resolution some portions of your desktop may appear abnormally small.<br />
====Desktop Settings====
While KDE Plasma offers a way to 'scale' the appearance this feature does not always give good results, especially with fractional scaling (1.25x instead of 2x).<br />
The best results hinge on applying font DPI settings. It is advisable to keep your configuration to 'quarter steps'. Example:<br />
| 1.00x='''96dpi''' | 1.25x='''120dpi''' | 1.50x='''144dpi''' | 1.75x='''168dpi''' | 2.00x='''192dpi''' |


{{ic|System Settings -> Fonts -> Force font DPI (input desired DPI value)}}
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}}
 
'''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.


In order to set the DPI for GTK applications as well you can use an '''Environment Variable'''. Such as at {{ic|/etc/environment}}.<br />
This variable will use the 'fractional' scale number instead of DPI, as shown above. For example if you are using 144dpi then that is a 'fractional scale' of 1.5. Example:<br />


<code>GDK_SCALE=1.5</code>
====Lockscreen====


If you feel that icons need some resizing as well then you can use System Settings:
Basic settings such as delay and shortcut can be configured at the System Settings location<br />
{{ic|System Settings -> Security & Privacy -> Screen Locking}}<br />
Selecting the {{ic|Configure Appearance}} button in the top-right corner will present styling options.


{{ic|System Settings -> Icons -> Configure Icon Sizes}}


=Tips and Tricks=


====Lockscreen====


As of now there is no easy way to configure the appearance of the lockscreen. It is provided by your '''look-and-feel''' theme, or lacking that, by the the default breeze.  
====File Manager====
 
Dolphin is the default file manager for Plasma.<br />
See its dedicated page [[Dolphin|here]].
 
 
====KCMs====
 
Settings in Plasma are provided by KDE Configuration Modules (KCM). These are the various modules or sections of ''System Settings'', but it should be noted that some KCMs are hidden from ''System Settings''. All modules can be managed and launched via the utility ''kcmshell6''.
 
To list available KCMs:
{{UserCmd|command=kcmshell6 --list}}
 
To run a particular module (replacing ''kcm_kded'' with the desired module):
{{UserCmd|command=kcmshell6 kcm_kded}}
 
====Single Click vs Double Click====
 
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====
 
=====Block Power Management=====
 
The Plasma Power widget can be used to manually inhibit Screen Locking and Sleep but the ''kde-inhibit'' command can be used to manually block specific features. The following example will use all of them to inhibit each feature for as long as trailing command is running (in this case ''spotify'').


{{UserCmd|command=kde-inhibit --power --screenSaver --nightLight --notifications spotify}}


=Tips and Tricks=
=====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''.


====Desktop Settings====
{{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>
}}


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}}
=====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''.


'''Desktop Toolbox'''<br />
{{File|file=/etc/polkit-1/rules.d/99-disable-suspend.rules|content=
To toggle the appearance of the 'toolbox' navigate to the ''Tweaks'' tab. {{ic|Desktop Settings -> Tweaks -> Show the desktop toolbox}}
<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>
}}


=====End Session Commands=====


'''Layout'''<br />
Logging out or shutting down via a command can be useful whether for a non-graphical environment or inclusion in scripts. Whenever a plasma session is involved using the following commands should be preferred over more generic options such as ''systemctl reboot''.  
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.


======Prompt======


====kwin-lowlatency====
DBUS provides methods to open a prompt to end a session (logout, reboot, shutdown).


If you feel that plasma, or more precisely the window manager isnt as 'snappy' as it could be (lag, stuttering, etc) when you have obviously capable hardware then there is one workaround to try. Some users report significant increases in speed and responsiveness when replacing the default window manager {{ic|kwin}} with a slightly modified and patched version - {{ic|kwin-lowlatency}}.<br />
{{UserCmd|command=qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptLogout}}
The package is available in the [[AUR]] and should automatically replace {{ic|kwin}} when installed.
{{UserCmd|command=qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptReboot}}
For more information see [https://github.com/tildearrow/kwin-lowlatency here].
{{UserCmd|command=qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptShutDown}}
{{UserCmd|command=qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptAll}}


======Immediate======


====Single Click vs Double Click====
Similar commands can be used to initiate the process without any prompt.


In order to select between single and double click for opening files and folders you can use System Settings.<br />
{{UserCmd|command=qdbus6 org.kde.Shutdown /Shutdown savesession}}
{{ic|System Settings -> Desktop Behavior -> Click behavior}}
{{UserCmd|command=qdbus6 org.kde.Shutdown /Shutdown logout}}
{{UserCmd|command=qdbus6 org.kde.Shutdown /Shutdown logoutAndReboot}}
{{UserCmd|command=qdbus6 org.kde.Shutdown /Shutdown logoutAndShutdown}}





Latest revision as of 08:05, 12 November 2024

Other languages:
English • ‎Türkçe • ‎русский • ‎فارسی

Overview

KDE is a software project currently comprised of a desktop environment known as Plasma, a collection of libraries and frameworks and several applications.


KDE-de-18.jpg


Appearance

Desktop Settings

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 Alt+D,Alt+S

Layout
Under the Wallpaper tab there is a 'Layout' option. Desktop Settings -> Wallpaper -> Layout
"Folder View" will allow you to place and interact with items on the desktop.
If you do not use desktop icons (or if you need encouragement for better organization) you can use "Desktop".
"Desktop" layout will not allow items on the desktop and results in almost 20 MiB of memory savings in plasmashell.


Lockscreen

Basic settings such as delay and shortcut can be configured at the System Settings location
System Settings -> Security & Privacy -> Screen Locking
Selecting the Configure Appearance button in the top-right corner will present styling options.


Tips and Tricks

File Manager

Dolphin is the default file manager for Plasma.
See its dedicated page here.


KCMs

Settings in Plasma are provided by KDE Configuration Modules (KCM). These are the various modules or sections of System Settings, but it should be noted that some KCMs are hidden from System Settings. All modules can be managed and launched via the utility kcmshell6.

To list available KCMs:

user $ kcmshell6 --list COPY TO CLIPBOARD


To run a particular module (replacing kcm_kded with the desired module):

user $ kcmshell6 kcm_kded COPY TO CLIPBOARD


Single Click vs Double Click

In order to select between single and double click for opening files and folders you can use System Settings.
System Settings -> Workspace -> General Behavior -> "Clicking files or folders"


Power

Block Power Management

The Plasma Power widget can be used to manually inhibit Screen Locking and Sleep but the kde-inhibit command can be used to manually block specific features. The following example will use all of them to inhibit each feature for as long as trailing command is running (in this case spotify).

user $ kde-inhibit --power --screenSaver --nightLight --notifications spotify COPY TO CLIPBOARD


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.

/etc/polkit-1/rules.d/99-disable-hibernate.rules
// 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;
   }
});
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.

/etc/polkit-1/rules.d/99-disable-suspend.rules
// 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;
   }
});
End Session Commands

Logging out or shutting down via a command can be useful whether for a non-graphical environment or inclusion in scripts. Whenever a plasma session is involved using the following commands should be preferred over more generic options such as systemctl reboot.

Prompt

DBUS provides methods to open a prompt to end a session (logout, reboot, shutdown).

user $ qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptLogout COPY TO CLIPBOARD


user $ qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptReboot COPY TO CLIPBOARD


user $ qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptShutDown COPY TO CLIPBOARD


user $ qdbus6 org.kde.LogoutPrompt /LogoutPrompt promptAll COPY TO CLIPBOARD


Immediate

Similar commands can be used to initiate the process without any prompt.

user $ qdbus6 org.kde.Shutdown /Shutdown savesession COPY TO CLIPBOARD


user $ qdbus6 org.kde.Shutdown /Shutdown logout COPY TO CLIPBOARD


user $ qdbus6 org.kde.Shutdown /Shutdown logoutAndReboot COPY TO CLIPBOARD


user $ qdbus6 org.kde.Shutdown /Shutdown logoutAndShutdown COPY TO CLIPBOARD



See also

KDE.org
Archwiki:KDE
Wikipedia:KDE

Cookies help us deliver our services. By using our services, you agree to our use of cookies.