mirror of https://gitee.com/openkylin/kwin.git
parent
c43fb69564
commit
484756c92e
|
@ -14,3 +14,4 @@ install(TARGETS kwin5_update_default_rules DESTINATION ${KDE_INSTALL_LIBDIR}/kco
|
|||
install(FILES org_kde_kwin.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
|
||||
install(FILES kwinrc DESTINATION /etc/xdg)
|
||||
install(FILES kwin.desktop DESTINATION /etc/xdg/autostart)
|
||||
install(FILES kwinrulesrc DESTINATION /etc/xdg)
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
[1]
|
||||
Description=disable_screensaver_shortcuts
|
||||
disableglobalshortcuts=true
|
||||
disableglobalshortcutsrule=2
|
||||
wmclass=ukui-screensaver-dialog
|
||||
wmclasscomplete=false
|
||||
wmclassmatch=1
|
||||
|
||||
[General]
|
||||
count=1
|
|
@ -32,3 +32,4 @@ usr/share/locale/
|
|||
usr/share/qlogging-categories5/
|
||||
etc/xdg/kwinrc
|
||||
etc/xdg/autostart/kwin.desktop
|
||||
etc/xdg/kwinrulesrc
|
||||
|
|
|
@ -93,6 +93,9 @@ class ScaleEffect {
|
|||
if (!ScaleEffect.isScaleWindow(window)) {
|
||||
return;
|
||||
}
|
||||
if (window.caption == "ukui-session-tools")
|
||||
return;
|
||||
|
||||
if (!window.visible) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue