From d78a0059b4b6a1332e3b6386b625ef5f5a6b1e7f Mon Sep 17 00:00:00 2001 From: Valeria Fadeeva Date: Mon, 20 May 2024 21:41:19 +0500 Subject: [PATCH] Update --- README.md | 2 - skel/.bashrc | 162 +- skel/.config/Trolltech.conf | 8 +- .../autostart/gnome-keyring-pkcs11.desktop | 0 .../autostart/gnome-keyring-secrets.desktop | 0 .../autostart/gnome-keyring-ssh.desktop | 0 ...elawy-arch-linux-updater-tray-icon.desktop | 16 + skel/.config/autostart/pipewire.desktop | 0 skel/.config/autostart/reset-layout.desktop | 0 .../autostart/set-default-web-browser.desktop | 0 skel/.config/dconf/user | Bin 1516 -> 1609 bytes skel/.config/gtk-3.0/colors.css | 38 +- skel/.config/gtk-3.0/settings.ini | 3 +- skel/.config/gtk-4.0/colors.css | 38 +- skel/.config/gtk-4.0/settings.ini | 3 +- skel/.config/gtkrc | 6 +- skel/.config/gtkrc-2.0 | 2 +- skel/.config/kconf_updaterc | 44 +- skel/.config/kdedefaults/kscreenlockerrc | 2 +- skel/.config/kdedefaults/kwinrc | 2 - skel/.config/kdeglobals | 68 +- skel/.config/kglobalshortcutsrc | 93 +- skel/.config/klassy/klassyrc | 51 +- skel/.config/klassy/windecopresetsrc | 4240 ++++++++++------- skel/.config/konsolerc | 1 - skel/.config/kwinrc | 10 +- .../plasma-org.kde.plasma.desktop-appletsrc | 163 +- skel/.config/plasmashellrc | 43 +- skel/.config/powerdevilrc | 4 + skel/.config/powermanagementprofilesrc | 4 + skel/.config/xsettingsd/xsettingsd.conf | 3 +- skel/.gtkrc-2.0 | 3 +- skel/.local/share/dolphin/dolphinstaterc | 10 +- .../dolphin/view_properties/global/.directory | 2 +- 34 files changed, 3114 insertions(+), 1907 deletions(-) mode change 100644 => 100755 skel/.config/autostart/gnome-keyring-pkcs11.desktop mode change 100644 => 100755 skel/.config/autostart/gnome-keyring-secrets.desktop mode change 100644 => 100755 skel/.config/autostart/gnome-keyring-ssh.desktop create mode 100755 skel/.config/autostart/melawy-arch-linux-updater-tray-icon.desktop mode change 100644 => 100755 skel/.config/autostart/pipewire.desktop mode change 100644 => 100755 skel/.config/autostart/reset-layout.desktop mode change 100644 => 100755 skel/.config/autostart/set-default-web-browser.desktop diff --git a/README.md b/README.md index a4e0267..5b561f1 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,4 @@ etc skel for Melawy Linux [YooMoney](https://yoomoney.ru/to/4100115921160758) -[Qiwi](https://qiwi.com/n/VALERIAFADEEVA) - Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f diff --git a/skel/.bashrc b/skel/.bashrc index d0f06c8..740a951 100644 --- a/skel/.bashrc +++ b/skel/.bashrc @@ -11,76 +11,112 @@ fi # If not running interactively, don't do anything [[ $- != *i* ]] && return -if ! shopt -oq posix; then - if [ -f /usr/share/bash-completion/bash_completion ]; then - . /usr/share/bash-completion/bash_completion - elif [ -f /etc/bash_completion ]; then - . /etc/bash_completion - fi +colors() { + local fgc bgc vals seq0 + + printf "Color escapes are %s\n" '\e[${value};...;${value}m' + printf "Values 30..37 are \e[33mforeground colors\e[m\n" + printf "Values 40..47 are \e[43mbackground colors\e[m\n" + printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n" + + # foreground colors + for fgc in {30..37}; do + # background colors + for bgc in {40..47}; do + fgc=${fgc#37} # white + bgc=${bgc#40} # black + + vals="${fgc:+$fgc;}${bgc}" + vals=${vals%%;} + + seq0="${vals:+\e[${vals}m}" + printf " %-9s" "${seq0:-(default)}" + printf " ${seq0}TEXT\e[m" + printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m" + done + echo; echo + done +} + +[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion + +# Change the window title of X terminals +case ${TERM} in + xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*) + PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"' + ;; + screen*) + PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"' + ;; +esac + +use_color=true + +# Set colorful PS1 only on colorful terminals. +# dircolors --print-database uses its own built-in database +# instead of using /etc/DIR_COLORS. Try to use the external file +# first to take advantage of user additions. Use internal bash +# globbing instead of external grep binary. +safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM +match_lhs="" +[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)" +[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(/dev/null \ + && match_lhs=$(dircolors --print-database) +[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true + +if ${use_color} ; then + # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 + if type -P dircolors >/dev/null ; then + if [[ -f ~/.dir_colors ]] ; then + eval $(dircolors -b ~/.dir_colors) + elif [[ -f /etc/DIR_COLORS ]] ; then + eval $(dircolors -b /etc/DIR_COLORS) + fi + fi + + if [[ ${EUID} == 0 ]] ; then + PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] ' + else + PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\$\[\033[00m\] ' + fi + + alias ls='ls --color=auto' + alias grep='grep --colour=auto' + alias egrep='egrep --colour=auto' + alias fgrep='fgrep --colour=auto' +else + if [[ ${EUID} == 0 ]] ; then + # show root@ when we don't have colors + PS1='\u@\h \W \$ ' + else + PS1='\u@\h \w \$ ' + fi fi +unset use_color safe_term match_lhs sh + +#alias cp="cp -i" # confirm before overwriting something +#alias df='df -h' # human-readable sizes +#alias free='free -m' # show sizes in MB +#alias np='nano -w PKGBUILD' +#alias more=less + xhost +local:root > /dev/null 2>&1 -complete -cf sudo - -shopt -s cdspell +# Bash won't get SIGWINCH if another process is in the foreground. +# Enable checkwinsize so that bash will check the terminal size when +# it regains control. #65623 +# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11) shopt -s checkwinsize -shopt -s cmdhist -shopt -s dotglob + shopt -s expand_aliases -shopt -s extglob + +# export QT_SELECT=4 + +# Enable history appending instead of overwriting. #139609 shopt -s histappend -shopt -s hostcomplete -shopt -s nocaseglob - -export HISTSIZE=10000 -export HISTFILESIZE=${HISTSIZE} -export HISTCONTROL=ignoreboth - -alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias grep='grep --color=tty -d skip' -alias cp="cp -i" # confirm before overwriting something -alias df='df -h' # human-readable sizes -alias vp='vim PKGBUILD' -alias vs='vim SPLITBUILD' -alias upd='mirror-check --fast && sudo pacman -Syu' -alias dvdburn='growisofs -Z /dev/sr0 -R -J' -alias :pf='pkgfile -vri' - -# ex - archive extractor -# usage: ex -ex () -{ - if [ -f $1 ] ; then - case $1 in - *.tar.bz2) tar xjf $1 ;; - *.tar.gz) tar xzf $1 ;; - *.bz2) bunzip2 $1 ;; - *.rar) unrar x $1 ;; - *.gz) gunzip $1 ;; - *.tar) tar xf $1 ;; - *.tbz2) tar xjf $1 ;; - *.tgz) tar xzf $1 ;; - *.zip) unzip $1 ;; - *.Z) uncompress $1;; - *.7z) 7z x $1 ;; - *) echo "'$1' cannot be extracted via ex()" ;; - esac - else - echo "'$1' is not a valid file" - fi -} - -# default editor -export EDITOR=micro -export VISUAL=micro -alias vi=vim - - -# prompt -PS1='[\u@\h \W]\$ ' powerline-daemon -q POWERLINE_BASH_CONTINUATION=1 diff --git a/skel/.config/Trolltech.conf b/skel/.config/Trolltech.conf index c5935da..26a7989 100644 --- a/skel/.config/Trolltech.conf +++ b/skel/.config/Trolltech.conf @@ -11,7 +11,7 @@ KWinPalette\inactiveBlend=#3e3e3e KWinPalette\inactiveForeground=#9b9b9b KWinPalette\inactiveFrame=#424242 KWinPalette\inactiveTitleBtnBg=#424242 -Palette\active=#aaaaaa, #505050, #565656, #4c4c4c, #262626, #393939, #aaaaaa, #ffffff, #50b4ce, #464646, #414141, #1b1b1b, #b96673, #ffffff, #eb7587, #ce80ff, #4b4b4b, #000000, #1d6c8b, #c8c8c8, #aaaaaa -Palette\disabled=#616161, #4c4c4c, #535353, #494949, #242424, #363636, #646464, #ffffff, #4c6e76, #434343, #3e3e3e, #1a1a1a, #3e3e3e, #616161, #7a5258, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #aaaaaa -Palette\inactive=#a8a8a8, #515151, #575757, #4d4d4d, #272727, #3a3a3a, #a8a8a8, #ffffff, #5fb1c6, #474747, #424242, #1c1c1c, #6b4349, #aea6a8, #c48790, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #aaaaaa -font="Noto Sans,10,-1,0,50,0,0,0,0,0" +Palette\active=#aaaaaa, #505050, #565656, #4c4c4c, #262626, #393939, #aaaaaa, #ffffff, #50b4ce, #464646, #414141, #1b1b1b, #1d6c8b, #c8c8c8, #2eb8e6, #ce80ff, #4b4b4b, #000000, #1d6c8b, #c8c8c8, #aaaaaa, #1d6c8b +Palette\disabled=#616161, #4c4c4c, #535353, #494949, #242424, #363636, #646464, #ffffff, #4c6e76, #434343, #3e3e3e, #1a1a1a, #3e3e3e, #616161, #3b6978, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #646464, #3e3e3e +Palette\inactive=#a8a8a8, #515151, #575757, #4d4d4d, #272727, #3a3a3a, #a8a8a8, #ffffff, #5fb1c6, #474747, #424242, #1c1c1c, #225163, #9babb1, #42b5dc, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #a8a8a8, #225163 +font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1" diff --git a/skel/.config/autostart/gnome-keyring-pkcs11.desktop b/skel/.config/autostart/gnome-keyring-pkcs11.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/autostart/gnome-keyring-secrets.desktop b/skel/.config/autostart/gnome-keyring-secrets.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/autostart/gnome-keyring-ssh.desktop b/skel/.config/autostart/gnome-keyring-ssh.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/autostart/melawy-arch-linux-updater-tray-icon.desktop b/skel/.config/autostart/melawy-arch-linux-updater-tray-icon.desktop new file mode 100755 index 0000000..9b0ffed --- /dev/null +++ b/skel/.config/autostart/melawy-arch-linux-updater-tray-icon.desktop @@ -0,0 +1,16 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Name=Melawy Arch Linux Updater Tray Icon +Name[en_GB]=Melawy Arch Linux Updater Tray Icon +Name[en_US]=Melawy Arch Linux Updater Tray Icon +Name[ru]=Melawy Arch Linux Иконка Обновления для Системного Трея +Comment=Melawy Arch Linux Иконка Обновления для Системного Трея +Comment[en_GB]=Melawy Arch Linux Updater Tray Icon +Comment[en_US]=Melawy Arch Linux Updater Tray Icon +Comment[ru]=Melawy Arch Linux Иконка Обновления для Системного Трея +Icon=software-store +Categories=System;Settings;Security; +Exec=/usr/bin/melawy-arch-linux-updater-tray-icon +Type=Application +StartupNotify=true +Terminal=false diff --git a/skel/.config/autostart/pipewire.desktop b/skel/.config/autostart/pipewire.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/autostart/reset-layout.desktop b/skel/.config/autostart/reset-layout.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/autostart/set-default-web-browser.desktop b/skel/.config/autostart/set-default-web-browser.desktop old mode 100644 new mode 100755 diff --git a/skel/.config/dconf/user b/skel/.config/dconf/user index 4644623880ae80ebbbba372c10e3ea10ab30a422..0d7badb8fd5e9239ec7b27eeccddcbb37c1c8db9 100644 GIT binary patch literal 1609 zcmZXUPiRy}9LFcgMw4t3jmAHcxiZ{=IDH%9E6{94h>MdS?}JS|>u*J@ z3+%hQ|1j&*x1fFx^c~PYJNP5lMZW>@5oieJGN-?5MV!6~b*j)w@LI#y!|VxtE8(!&VB=;7Z+yl$J>%=4 zJHT}P{jWHG`Uce54ebWsk3N}XK7AJXd!Yw__l?SOPw88cKLkAj&Yo>Q&wToJ(~cq1w36ax0z4B5&2Wli{O{j)sMKp^qkKObPi-5_YZKM^o@vLhR%b& z53jw;zR`2so6rUD`T5>yo=tk@-+?ZHJx4!z$TLU33Hi&=M__i~&~KX&r*A|43iNld z_)16TCdBD^-kw7L1h=OCdVp}^n-I_7W9S5LzWm-Uu8W@MryH6BU)&$M!ZOU}<QMZ$bpVjyyM_%1Vg0RVc?NynGlduOQ8+5Z3BADlicxgov0&DF-DZohra`Ud1>Jy^2v| zfg0y~$&IeA_TTjyuF*S)1$(|OSEP@N%BnFP##|&i;iPAk8B+#h@DB20W3_p{jw*Oz zP#SSwK^0{jIxkH`o2;)x{KNW5qcNYNGOH~fFSEbA3u<*OI)}G(Jt9c6Rpcv+#74xe zFT)@zd1#r_hU>%==Wxza?^M-ctp6u5CwW$07uZ~m$$LZg^-a+8tk(8-wO#BNx}kEs zM|tmB-zXJ%M#%!EpJpeG7I|5zgn^%)iX87-bTY^9qM+=k)0G_0JkKTXwspX19p)uk h;wHj$wTNNf7^SEqmmHB{?R3{M8QGq$uD)LU@(;;jJVO8g literal 1516 zcmZvcOK2296h%A9MDy3gsPRis7eZ2WVi5eGZp47bC@SJcOifSCq)kuPP+gr&R4|~Z z3xzC1LKHvXLO~=O|DY}u1VIHwgSZeE;zGftf};1%Ohm+nlY8^#^{c8^Ro%T?8efLi zDLpOFo{GXh%NI=rp=E!;pA(=GOanEb7Sw?mC1ygKz^oF@(Ai*4iMde1@fQ5U$@0mI z^@wpE6;6+{9l8rFshoa-nzK<6vFIrC!#iuS0wcdKQT5 zis=Pkhx%6#y9QS5IP$Imar)WFe*%39#=CEw;S2PvGYS0&&QJDSWt_em@vqP_H0Je4 z{?I(c={f%dv^tH%ufi4E;5+irn7y2s1mqXjY>c?xhu@Ce$sIv;%2Ob{Y zx1M$A8#D)h+l+W25;tG`_4M_T-OBjCAd(1 zyo+&quIoMY2k08_e#SkcZ$h1!H~`IH%l6S)u9rT6cnfqPcr|vl7pVo$ed%B>_;%0S zXMOrvi1$JFgNa+qI(TO2r=d;`ng`FX9L;lG^m7m&g`NhF+8Udy5U1z3W6*Qp*s+FF ztWV#-bwO`}S2xO?UwG)tkbfKc5OnUJ*u!%|&-@qAm*DKFj+2du(^n#Y68at_K6kC; zzR)xN3HlifWnIj}aePmQ!uG4Ia-6LykVC^F8N^DYq#3{|wOR*BX+&g)17%encP~oE zK_GHQ4f<*b6*#{n{!J^RLQh3*;T}bvQ7RNh$&@leg)$kaR3V#xlAaDUs(OWii!Vdp{lU&htCLcX{8-L2;HshJIFBUxyK5d{8f?q5-ROuEVp*{o*5Yxxn{| zsT>Dwotj&rqosZtl@fuU>9-=K(lQRLC@uiyql_Jx>i(bp8y$x!u@M^}Je|!+k4=ws z+73yha?0q?kF3OiJO|ojT%NaNY%O*&ki$Age&Jb@^|2ImsXZ(6MdJlJLenB{CE70o zKgwrpGK0!se11zYLzn07f3?_OCw6ha ei{IB$fBzgEo*Qn_eEg2jks~`hhuKGd*M0-dXe_q? diff --git a/skel/.config/gtk-3.0/colors.css b/skel/.config/gtk-3.0/colors.css index cd84af2..5792f42 100644 --- a/skel/.config/gtk-3.0/colors.css +++ b/skel/.config/gtk-3.0/colors.css @@ -15,7 +15,7 @@ @define-color insensitive_unfocused_fg_color_breeze #616161; @define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e; @define-color insensitive_unfocused_selected_fg_color_breeze #616161; -@define-color link_color_breeze #eb7587; +@define-color link_color_breeze #2eb8e6; @define-color link_visited_color_breeze #ce80ff; @define-color success_color_backdrop_breeze #318654; @define-color success_color_breeze #1e884a; @@ -27,17 +27,17 @@ @define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c; @define-color theme_button_background_insensitive_breeze #4c4c4c; @define-color theme_button_background_normal_breeze #505050; -@define-color theme_button_decoration_focus_backdrop_breeze #c6878f; -@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #80595f; -@define-color theme_button_decoration_focus_breeze #eb7587; -@define-color theme_button_decoration_focus_insensitive_breeze #80595f; -@define-color theme_button_decoration_hover_backdrop_breeze #c6878f; -@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #80595f; -@define-color theme_button_decoration_hover_breeze #eb7587; -@define-color theme_button_decoration_hover_insensitive_breeze #80595f; -@define-color theme_button_foreground_active_backdrop_breeze #aea6a8; +@define-color theme_button_decoration_focus_backdrop_breeze #5fb1c6; +@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_focus_breeze #50b4ce; +@define-color theme_button_decoration_focus_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_hover_backdrop_breeze #5fb1c6; +@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_hover_breeze #50b4ce; +@define-color theme_button_decoration_hover_insensitive_breeze #4c6e76; +@define-color theme_button_foreground_active_backdrop_breeze #9babb1; @define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161; -@define-color theme_button_foreground_active_breeze #ffffff; +@define-color theme_button_foreground_active_breeze #c8c8c8; @define-color theme_button_foreground_active_insensitive_breeze #616161; @define-color theme_button_foreground_backdrop_breeze #5fb1c6; @define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76; @@ -51,9 +51,9 @@ @define-color theme_header_foreground_breeze #c8c8c8; @define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7; @define-color theme_header_foreground_insensitive_breeze #f7f7f7; -@define-color theme_hovering_selected_bg_color_breeze #eb7587; -@define-color theme_selected_bg_color_breeze #b96673; -@define-color theme_selected_fg_color_breeze #ffffff; +@define-color theme_hovering_selected_bg_color_breeze #50b4ce; +@define-color theme_selected_bg_color_breeze #1d6c8b; +@define-color theme_selected_fg_color_breeze #c8c8c8; @define-color theme_text_color_breeze #aaaaaa; @define-color theme_titlebar_background_backdrop_breeze #2c3034; @define-color theme_titlebar_background_breeze #3c3c3c; @@ -65,14 +65,14 @@ @define-color theme_unfocused_base_color_breeze #474747; @define-color theme_unfocused_bg_color_breeze #424242; @define-color theme_unfocused_fg_color_breeze #a8a8a8; -@define-color theme_unfocused_selected_bg_color_alt_breeze #6b4349; -@define-color theme_unfocused_selected_bg_color_breeze #6b4349; -@define-color theme_unfocused_selected_fg_color_breeze #aea6a8; +@define-color theme_unfocused_selected_bg_color_alt_breeze #225163; +@define-color theme_unfocused_selected_bg_color_breeze #225163; +@define-color theme_unfocused_selected_fg_color_breeze #9babb1; @define-color theme_unfocused_text_color_breeze #a8a8a8; @define-color theme_unfocused_view_bg_color_breeze #434343; @define-color theme_unfocused_view_text_color_breeze #646464; -@define-color theme_view_active_decoration_color_breeze #eb7587; -@define-color theme_view_hover_decoration_color_breeze #eb7587; +@define-color theme_view_active_decoration_color_breeze #1d6c8b; +@define-color theme_view_hover_decoration_color_breeze #1d6c8b; @define-color tooltip_background_breeze #1d6c8b; @define-color tooltip_border_breeze #48839a; @define-color tooltip_text_breeze #c8c8c8; diff --git a/skel/.config/gtk-3.0/settings.ini b/skel/.config/gtk-3.0/settings.ini index 8c46566..847a714 100644 --- a/skel/.config/gtk-3.0/settings.ini +++ b/skel/.config/gtk-3.0/settings.ini @@ -9,7 +9,8 @@ gtk-font-name=Noto Sans, 10 gtk-icon-theme-name=Melawy-blue-dark gtk-menu-images=true gtk-modules=colorreload-gtk-module:window-decorations-gtk-module -gtk-primary-button-warps-slider=false +gtk-primary-button-warps-slider=true +gtk-sound-theme-name=ocean gtk-theme-name=Melawy-round-Dark-compact gtk-toolbar-style=3 gtk-xft-dpi=98304 diff --git a/skel/.config/gtk-4.0/colors.css b/skel/.config/gtk-4.0/colors.css index cd84af2..5792f42 100644 --- a/skel/.config/gtk-4.0/colors.css +++ b/skel/.config/gtk-4.0/colors.css @@ -15,7 +15,7 @@ @define-color insensitive_unfocused_fg_color_breeze #616161; @define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e; @define-color insensitive_unfocused_selected_fg_color_breeze #616161; -@define-color link_color_breeze #eb7587; +@define-color link_color_breeze #2eb8e6; @define-color link_visited_color_breeze #ce80ff; @define-color success_color_backdrop_breeze #318654; @define-color success_color_breeze #1e884a; @@ -27,17 +27,17 @@ @define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c; @define-color theme_button_background_insensitive_breeze #4c4c4c; @define-color theme_button_background_normal_breeze #505050; -@define-color theme_button_decoration_focus_backdrop_breeze #c6878f; -@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #80595f; -@define-color theme_button_decoration_focus_breeze #eb7587; -@define-color theme_button_decoration_focus_insensitive_breeze #80595f; -@define-color theme_button_decoration_hover_backdrop_breeze #c6878f; -@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #80595f; -@define-color theme_button_decoration_hover_breeze #eb7587; -@define-color theme_button_decoration_hover_insensitive_breeze #80595f; -@define-color theme_button_foreground_active_backdrop_breeze #aea6a8; +@define-color theme_button_decoration_focus_backdrop_breeze #5fb1c6; +@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_focus_breeze #50b4ce; +@define-color theme_button_decoration_focus_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_hover_backdrop_breeze #5fb1c6; +@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4c6e76; +@define-color theme_button_decoration_hover_breeze #50b4ce; +@define-color theme_button_decoration_hover_insensitive_breeze #4c6e76; +@define-color theme_button_foreground_active_backdrop_breeze #9babb1; @define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161; -@define-color theme_button_foreground_active_breeze #ffffff; +@define-color theme_button_foreground_active_breeze #c8c8c8; @define-color theme_button_foreground_active_insensitive_breeze #616161; @define-color theme_button_foreground_backdrop_breeze #5fb1c6; @define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76; @@ -51,9 +51,9 @@ @define-color theme_header_foreground_breeze #c8c8c8; @define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7; @define-color theme_header_foreground_insensitive_breeze #f7f7f7; -@define-color theme_hovering_selected_bg_color_breeze #eb7587; -@define-color theme_selected_bg_color_breeze #b96673; -@define-color theme_selected_fg_color_breeze #ffffff; +@define-color theme_hovering_selected_bg_color_breeze #50b4ce; +@define-color theme_selected_bg_color_breeze #1d6c8b; +@define-color theme_selected_fg_color_breeze #c8c8c8; @define-color theme_text_color_breeze #aaaaaa; @define-color theme_titlebar_background_backdrop_breeze #2c3034; @define-color theme_titlebar_background_breeze #3c3c3c; @@ -65,14 +65,14 @@ @define-color theme_unfocused_base_color_breeze #474747; @define-color theme_unfocused_bg_color_breeze #424242; @define-color theme_unfocused_fg_color_breeze #a8a8a8; -@define-color theme_unfocused_selected_bg_color_alt_breeze #6b4349; -@define-color theme_unfocused_selected_bg_color_breeze #6b4349; -@define-color theme_unfocused_selected_fg_color_breeze #aea6a8; +@define-color theme_unfocused_selected_bg_color_alt_breeze #225163; +@define-color theme_unfocused_selected_bg_color_breeze #225163; +@define-color theme_unfocused_selected_fg_color_breeze #9babb1; @define-color theme_unfocused_text_color_breeze #a8a8a8; @define-color theme_unfocused_view_bg_color_breeze #434343; @define-color theme_unfocused_view_text_color_breeze #646464; -@define-color theme_view_active_decoration_color_breeze #eb7587; -@define-color theme_view_hover_decoration_color_breeze #eb7587; +@define-color theme_view_active_decoration_color_breeze #1d6c8b; +@define-color theme_view_hover_decoration_color_breeze #1d6c8b; @define-color tooltip_background_breeze #1d6c8b; @define-color tooltip_border_breeze #48839a; @define-color tooltip_text_breeze #c8c8c8; diff --git a/skel/.config/gtk-4.0/settings.ini b/skel/.config/gtk-4.0/settings.ini index 228a692..a9495ce 100644 --- a/skel/.config/gtk-4.0/settings.ini +++ b/skel/.config/gtk-4.0/settings.ini @@ -7,6 +7,7 @@ gtk-enable-animations=true gtk-font-name=Noto Sans, 10 gtk-icon-theme-name=Melawy-blue-dark gtk-modules=colorreload-gtk-module:window-decorations-gtk-module -gtk-primary-button-warps-slider=false +gtk-primary-button-warps-slider=true +gtk-sound-theme-name=ocean gtk-theme-name=Melawy-round-Dark-compact gtk-xft-dpi=98304 diff --git a/skel/.config/gtkrc b/skel/.config/gtkrc index 0518886..ec17530 100644 --- a/skel/.config/gtkrc +++ b/skel/.config/gtkrc @@ -1,2 +1,6 @@ -# created by KDE Plasma, чт нояб. 30 22:19:13 2023 +# KDE Plasma, Mon May 20 21:33:30 2024 # +include "/usr/share/themes/Breeze/gtk-2.0/gtkrc" + +gtk-theme-name="Breeze" + diff --git a/skel/.config/gtkrc-2.0 b/skel/.config/gtkrc-2.0 index eb22d95..f3810f3 100644 --- a/skel/.config/gtkrc-2.0 +++ b/skel/.config/gtkrc-2.0 @@ -1,4 +1,4 @@ -# created by KDE Plasma, чт нояб. 30 22:19:13 2023 +# KDE Plasma, Mon May 20 21:33:30 2024 # gtk-alternative-button-order = 1 diff --git a/skel/.config/kconf_updaterc b/skel/.config/kconf_updaterc index b7b5128..35dbf95 100644 --- a/skel/.config/kconf_updaterc +++ b/skel/.config/kconf_updaterc @@ -61,9 +61,9 @@ done=Plasma_Fonts_Kate mtime=1698157670 [gtkconfig.upd] -ctime=1699418128 +ctime=1714201965 done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option -mtime=1698159270 +mtime=1713344090 [gwenview.upd] ctime=1700463809 @@ -81,8 +81,8 @@ done=migrate_kate_sessions_applet_to_kdeplasma-addons mtime=1699471323 [kcalcrc.upd] -ctime=1699623801 -mtime=1699371607 +ctime=1712981816 +mtime=1712689767 [kcm_rename_plasma_desktop.upd] ctime=1698168145 @@ -135,9 +135,9 @@ done=ksmserver_update_loginMode_value_default_enum mtime=1698159753 [kwin.upd] -ctime=1698168143 -done=replace-scalein-with-scale,port-minimizeanimation-effect-to-js,port-scale-effect-to-js,port-dimscreen-effect-to-js,auto-bordersize,animation-speed,desktop-grid-click-behavior,no-swap-encourage,make-translucency-effect-disabled-by-default,remove-flip-switch-effect,remove-cover-switch-effect,remove-cubeslide-effect,remove-xrender-backend,enable-scale-effect-by-default,overview-group-plugin-id,animation-speed-cleanup,replace-cascaded-zerocornered -mtime=1698157131 +ctime=1713790266 +done=replace-scalein-with-scale,port-minimizeanimation-effect-to-js,port-scale-effect-to-js,port-dimscreen-effect-to-js,auto-bordersize,animation-speed,desktop-grid-click-behavior,no-swap-encourage,make-translucency-effect-disabled-by-default,remove-flip-switch-effect,remove-cover-switch-effect,remove-cubeslide-effect,remove-xrender-backend,enable-scale-effect-by-default,overview-group-plugin-id,animation-speed-cleanup,replace-cascaded-zerocornered,kwin-6.0-reset-active-mouse-screen,kwin-6.0-delete-desktop-switching-shortcuts,kwin-6.0-remove-breeze-tabbox-default +mtime=1713786347 [kwinrules.upd] ctime=1698168143 @@ -154,16 +154,46 @@ ctime=1698168145 done=split-variants mtime=1698159753 +[migrate-calendar-to-plugin-id.upd] +ctime=1716184673 +done=kwin-6.0-remove-breeze-tabbox-default,migrate-calendar-plugins +mtime=1715290605 + [okular.upd] ctime=1699623803 done=annotation-toolbar,builtin-annotations mtime=1699365007 +[plasma6.0-remove-dpi-settings.upd] +ctime=1716184673 +done=migrate-calendar-plugins,plasma6.0-remove-dpi-settings +mtime=1715290605 + +[plasma6.0-remove-old-shortcuts.upd] +ctime=1716184673 +done=plasma6.0-remove-dpi-settings,plasma6.0-remove-old-shortcuts +mtime=1715290605 + [plasmashell-5.27-use-panel-thickness-in-default-group.upd] ctime=1700339322 done=plasmashell-5.27-use-panel-thickness-in-default-group mtime=1699791123 +[plasmashell-6.0-keep-custom-position-of-panels.upd] +ctime=1716184673 +done=plasma6.0-remove-old-shortcuts,plasmashell-6.0-keep-custom-position-of-panels +mtime=1715290605 + +[plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd] +ctime=1716184673 +done=plasmashell-6.0-keep-custom-position-of-panels,plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels +mtime=1715290605 + +[spectacle.upd] +ctime=1712981828 +done=plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels,24.02.0-video_format,24.02.0-keep_old_save_location,24.02.0-rename_settings,24.02.0-keep_old_filename_templates,24.02.0-change_placeholder_format +mtime=1712685304 + [spectacle_clipboard.upd] ctime=1699623807 done=clipboard-settings-change diff --git a/skel/.config/kdedefaults/kscreenlockerrc b/skel/.config/kdedefaults/kscreenlockerrc index 7e949cf..a0d8282 100644 --- a/skel/.config/kdedefaults/kscreenlockerrc +++ b/skel/.config/kdedefaults/kscreenlockerrc @@ -1,2 +1,2 @@ [Greeter] -Theme=org.kde.breeze.desktop +Theme=com.github.Melawy.Melawy-round-gray.Nier-A2.desktop diff --git a/skel/.config/kdedefaults/kwinrc b/skel/.config/kdedefaults/kwinrc index 6a88f93..e5a9647 100644 --- a/skel/.config/kdedefaults/kwinrc +++ b/skel/.config/kdedefaults/kwinrc @@ -1,6 +1,4 @@ [TabBox] -DesktopLayout=org.kde.breeze.desktop -DesktopListLayout=org.kde.breeze.desktop LayoutName=coverswitch [Windows] diff --git a/skel/.config/kdeglobals b/skel/.config/kdeglobals index 13f1270..b7a8f6e 100644 --- a/skel/.config/kdeglobals +++ b/skel/.config/kdeglobals @@ -24,13 +24,13 @@ IntensityAmount=0 IntensityEffect=0 [Colors:Button] -BackgroundAlternate=188,105,118 +BackgroundAlternate=30,87,116 BackgroundNormal=80,80,80 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=80,180,206 +DecorationHover=80,180,206 +ForegroundActive=255,128,224 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=46,184,230 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=80,180,206 @@ -40,11 +40,11 @@ ForegroundVisited=206,128,255 [Colors:Complementary] BackgroundAlternate=30,87,116 BackgroundNormal=60,60,60 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=61,174,233 +DecorationHover=61,174,233 +ForegroundActive=61,174,233 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=29,153,243 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=252,252,252 @@ -54,11 +54,11 @@ ForegroundVisited=155,89,182 [Colors:Header] BackgroundAlternate=90,90,90 BackgroundNormal=60,60,60 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=61,174,233 +DecorationHover=61,174,233 +ForegroundActive=61,174,233 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=29,153,243 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=200,200,200 @@ -80,27 +80,27 @@ ForegroundPositive=39,174,96 ForegroundVisited=155,89,182 [Colors:Selection] -BackgroundAlternate=185,102,115 -BackgroundNormal=185,102,115 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 -ForegroundInactive=255,255,255 -ForegroundLink=235,117,135 +BackgroundAlternate=30,87,116 +BackgroundNormal=29,108,139 +DecorationFocus=80,180,206 +DecorationHover=80,180,206 +ForegroundActive=255,128,224 +ForegroundInactive=170,170,170 +ForegroundLink=46,184,230 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 -ForegroundNormal=255,255,255 +ForegroundNormal=200,200,200 ForegroundPositive=30,136,74 ForegroundVisited=206,128,255 [Colors:Tooltip] BackgroundAlternate=60,60,60 BackgroundNormal=29,108,139 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=80,180,206 +DecorationHover=29,108,139 +ForegroundActive=255,128,224 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=46,184,230 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=200,200,200 @@ -110,11 +110,11 @@ ForegroundVisited=206,128,255 [Colors:View] BackgroundAlternate=75,75,75 BackgroundNormal=70,70,70 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=29,108,139 +DecorationHover=29,108,139 +ForegroundActive=255,128,224 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=46,184,230 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=170,170,170 @@ -124,11 +124,11 @@ ForegroundVisited=206,128,255 [Colors:Window] BackgroundAlternate=60,60,60 BackgroundNormal=65,65,65 -DecorationFocus=235,117,135 -DecorationHover=235,117,135 -ForegroundActive=235,117,135 +DecorationFocus=29,108,139 +DecorationHover=29,108,139 +ForegroundActive=255,128,224 ForegroundInactive=170,170,170 -ForegroundLink=235,117,135 +ForegroundLink=46,184,230 ForegroundNegative=218,68,83 ForegroundNeutral=246,116,0 ForegroundNormal=170,170,170 @@ -136,7 +136,6 @@ ForegroundPositive=30,136,74 ForegroundVisited=206,128,255 [General] -AccentColor=235,117,135 BrowserApplication=firefox.desktop ColorSchemeHash=227e6da9f2081194c0dddb365a90643d776d4f15 Name[ru_RU]=Breeze, светлый вариант @@ -151,7 +150,6 @@ LookAndFeelPackage=com.github.Melawy.Melawy-round-gray.Nier-A2.desktop ShowDeleteCommand=false SingleClick=false contrast=4 -widgetStyle=Klassy [KFileDialog Settings] Allow Expansion=false diff --git a/skel/.config/kglobalshortcutsrc b/skel/.config/kglobalshortcutsrc index 12aa74c..34b7625 100644 --- a/skel/.config/kglobalshortcutsrc +++ b/skel/.config/kglobalshortcutsrc @@ -4,6 +4,7 @@ switch-to-activity-357d5349-fd6a-4e36-8d43-33270dc1e4c5=none,none,Переклю switch-to-activity-84c85f49-02a4-464c-9302-b31556fcbbb7=none,none,Переключиться на комнату «Начальная комната» [KDE Keyboard Layout Switcher] +Switch to Last-Used Keyboard Layout=Meta+Alt+L,none,Выбрать последнюю использованную раскладку клавиатуры Switch to Next Keyboard Layout=Meta+Alt+K,Meta+Alt+K,Выбрать следующую раскладку клавиатуры _k_friendly_name=Переключение раскладки клавиатуры @@ -17,11 +18,6 @@ Enable Touchpad=Touchpad On,Touchpad On,Включить сенсорную па Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель _k_friendly_name=Сенсорная панель -[kded5] -Show System Activity=Ctrl+Esc,Ctrl+Esc,Показать активность системы -_k_friendly_name=KDE Daemon -display=Display\tMeta+P,Display\tMeta+P,Сменить экран - [khotkeys] _k_friendly_name=Служба пользовательских комбинаций клавиш {d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск @@ -30,27 +26,34 @@ _k_friendly_name=Служба пользовательских комбинац _k_friendly_name=Громкость decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона decrease_volume=Volume Down,Volume Down,Уменьшить громкость +decrease_volume_small=Shift+Volume Down,Shift+Volume Down,Уменьшить громкость на 1% increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Увеличить громкость микрофона increase_volume=Volume Up,Volume Up,Увеличить громкость +increase_volume_small=Shift+Volume Up,Shift+Volume Up,Увеличить громкость на 1% mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Выключить микрофон mute=Volume Mute,Volume Mute,Выключить звук [ksmserver] Halt Without Confirmation=none,,Выключить компьютер без подтверждения -Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Заблокировать сеанс +Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Lock Session Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Завершить сеанс Log Out Without Confirmation=none,,Завершить сеанс без подтверждения +Reboot=none,,Перезагрузить компьютер Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения -_k_friendly_name=Управление сеансами +Shut Down=none,,Выключить компьютер +_k_friendly_name=Session Management [kwin] Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания +Cycle Overview=none,none,Переключение между режимом обзора и просмотром сеткой +Cycle Overview Opposite=none,none,Переключение между просмотром сеткой и режимом обзора Decrease Opacity=none,,Уменьшить непрозрачность окна на 5% Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон Expose=Ctrl+F9,Ctrl+F9,Показать все окна с текущего рабочего стола -ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Показать все окна со всех рабочих столов +ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Показать все окна со всех рабочих столов\s ExposeClass=Ctrl+F7,Ctrl+F7,Показать окна одного класса ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола +Grid View=Meta+G,Meta+G,Включить или отключить режим просмотра сеткой Increase Opacity=none,,Увеличить непрозрачность окна на 5% Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно Move Tablet to Next Output=none,none,Переключить планшет к следующему выходу @@ -111,12 +114,8 @@ Switch to Screen to the Left=none,,Переключиться на экран с Switch to Screen to the Right=none,,Переключиться на экран справа Toggle Night Color=none,none,Включить или отключить ночную цветовую схему Toggle Window Raise/Lower=none,,Переключить передний/задний план -Walk Through Desktop List=none,,По списку рабочих столов вперёд -Walk Through Desktop List (Reverse)=none,,По списку рабочих столов назад -Walk Through Desktops=none,,На один рабочий стол вперёд -Walk Through Desktops (Reverse)=none,,На один рабочий стол назад Walk Through Windows=Alt+Tab,Alt+Tab,На одно окно вперёд -Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Backtab,На одно окно назад +Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Tab,На одно окно назад Walk Through Windows Alternative=none,,На одно окно вперёд (альтернативный режим) Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим) Walk Through Windows of Current Application=Alt+`,Alt+`,На одно окно вперёд текущего приложения @@ -142,10 +141,10 @@ Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Окно на Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Окно на один рабочий стол вверх Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Окно на один рабочий стол влево Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Окно на один рабочий стол вправо -Window One Screen Down=none,,Window One Screen Down -Window One Screen Up=none,,Window One Screen Up -Window One Screen to the Left=none,,Window One Screen to the Left -Window One Screen to the Right=none,,Window One Screen to the Right +Window One Screen Down=none,,Переместить окно на один экран вниз +Window One Screen Up=none,,Переместить окно на один экран вверх +Window One Screen to the Left=none,,Переместить окно на один экран влево +Window One Screen to the Right=none,,Переместить окно на один экран вправо Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном Window Pack Down=none,,Переместить окно вниз Window Pack Left=none,,Переместить окно влево @@ -212,54 +211,24 @@ playpausemedia=Media Play,Media Play,Начать/приостановить в previousmedia=Media Previous,Media Previous,Перейти к предыдущей дорожке stopmedia=Media Stop,Media Stop,Остановить воспроизведение -[org.kde.dolphin.desktop] -_k_friendly_name=Dolphin -_launch=Meta+E,Meta+E,Dolphin - -[org.kde.kcalc.desktop] -_k_friendly_name=KCalc -_launch=Launch (1),Launch (1),KCalc - -[org.kde.konsole.desktop] -NewTab=none,none,Открыть новую вкладку -NewWindow=none,none,Открыть новое окно -_k_friendly_name=Konsole -_launch=Ctrl+Alt+T,Ctrl+Alt+T,Konsole - -[org.kde.krunner.desktop] -RunClipboard=Alt+Shift+F2,Alt+Shift+F2,Запустить команду из буфера обмена -_k_friendly_name=Открыть строку поиска и запуска KRunner -_launch=Alt+Space\tAlt+F2\tSearch,Alt+Space\tAlt+F2\tSearch,Открыть строку поиска и запуска KRunner - -[org.kde.plasma.emojier.desktop] -_k_friendly_name=Панель выбора эмодзи -_launch=Meta+.\tMeta+Ctrl+Alt+Shift+Space,Meta+.\tMeta+Ctrl+Alt+Shift+Space,Панель выбора эмодзи - -[org.kde.spectacle.desktop] -ActiveWindowScreenShot=Meta+Print,Meta+Print,Сделать снимок активного окна -CurrentMonitorScreenShot=none,none,Сделать снимок текущего экрана -FullScreenScreenShot=Shift+Print,Shift+Print,Сделать снимок всех экранов -OpenWithoutScreenshot=none,none,Запускать Spectacle без создания снимка -RectangularRegionScreenShot=Meta+Shift+Print,Meta+Shift+Print,Сделать снимок прямоугольной области экрана -WindowUnderCursorScreenShot=Meta+Ctrl+Print,Meta+Ctrl+Print,Создать снимок окна под курсором мыши -_k_friendly_name=Spectacle -_launch=Print,Print,Запустить Spectacle - [org_kde_powerdevil] Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Уменьшить яркость экрана -Hibernate=Hibernate,Hibernate,Перейти в спящий режим +Decrease Screen Brightness Small=Shift+Monitor Brightness Down,Shift+Monitor Brightness Down,Уменьшить яркость экрана на 1% +Hibernate=Hibernate,Hibernate,Перейти в режим гибернации Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Увеличить яркость подсветки клавиатуры Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Увеличить яркость экрана +Increase Screen Brightness Small=Shift+Monitor Brightness Up,Shift+Monitor Brightness Up,Увеличить яркость экрана на 1% PowerDown=Power Down,Power Down,Отключить питание PowerOff=Power Off,Power Off,Выключить -Sleep=Sleep,Sleep,Перейти в ждущий режим +Sleep=Sleep,Sleep,Перейти в спящий режим Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры Turn Off Screen=none,none,Выключить монитор -_k_friendly_name=Управление питанием +_k_friendly_name=Система управления питанием KDE +powerProfile=Battery\tMeta+B,Battery\tMeta+B,Переключить профиль энергопотребления [plasmashell] -_k_friendly_name=Plasma +_k_friendly_name=plasmashell activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач activate task manager entry 2=Meta+2,Meta+2,Открыть 2-ю кнопку на панели задач @@ -283,10 +252,10 @@ clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Всплывающее меню авт cycle-panels=Meta+Alt+P,Meta+Alt+P,Перемещение фокуса ввода с клавиатуры между панелями cycleNextAction=none,,Следующая запись журнала cyclePrevAction=none,,Предыдущая запись журнала -edit_clipboard=none,,Редактирование буфера обмена… +edit_clipboard=none,none,Редактирование буфера обмена… manage activities=Meta+Q,Meta+Q,Показать переключатель комнат -next activity=Meta+Tab,none,На одну комнату вперёд -previous activity=Meta+Shift+Tab,none,На одну комнату назад +next activity=Meta+A,none,На одну комнату вперёд +previous activity=Meta+Shift+A,none,На одну комнату назад repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол show-barcode=none,,Показать штрихкод… @@ -296,11 +265,5 @@ switch to next activity=none,,Переключиться в следующую switch to previous activity=none,,Переключиться в предыдущую комнату toggle do not disturb=none,,Включение и отключение режима «Не беспокоить» -[systemsettings.desktop] -_k_friendly_name=Параметры системы -_launch=Tools,Tools,Параметры системы -kcm-kscreen=none,none,Настройка экранов -kcm-lookandfeel=none,none,Оформление рабочей среды -kcm-users=none,none,Пользователи -powerdevilprofilesconfig=none,none,Энергосбережение -screenlocker=none,none,Блокировка экрана +[services][org.kde.spectacle.desktop] +RecordWindow=none diff --git a/skel/.config/klassy/klassyrc b/skel/.config/klassy/klassyrc index 37c78ff..38820dc 100644 --- a/skel/.config/klassy/klassyrc +++ b/skel/.config/klassy/klassyrc @@ -1,25 +1,74 @@ [ButtonBehaviour] AlwaysShowIconHighlightUsing=Background +ShowBackgroundNormallyActive=true +ShowBackgroundNormallyInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=true +ShowCloseOutlineOnHoverActive=false +ShowCloseOutlineOnHoverInactive=false +ShowCloseOutlineOnPressActive=false +ShowCloseOutlineOnPressInactive=false +ShowOutlineOnHoverActive=false +ShowOutlineOnHoverInactive=false +ShowOutlineOnPressActive=false +ShowOutlineOnPressInactive=false +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseOutlineActive=No +VaryColorCloseOutlineInactive=No +VaryColorOutlineActive=No +VaryColorOutlineInactive=No + +[ButtonColors] +ButtonIconOpacityInactive=60 +CloseButtonIconColorActive=AsSelected +CloseButtonIconColorInactive=AsSelected +NegativeCloseBackgroundHoverPressActive=true +NegativeCloseBackgroundHoverPressInactive=true +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +UseHoverAccentActive=true +UseHoverAccentInactive=true + +[ButtonSizing] +ButtonSpacingLeft=5 +IntegratedRoundedRectangleBottomPadding=1.25 + +[Global] +LookAndFeelSet=com.github.Melawy.Melawy-round-gray.Nier-A2.desktop [Style] ButtonGradient=true MenuOpacity=80 [TitleBarOpacity] +ActiveTitleBarOpacity=75 ActiveTitlebarOpacity=75 +InactiveTitleBarOpacity=75 InactiveTitlebarOpacity=75 [TitleBarSpacing] +TitleBarBottomMargin=3 +TitleBarLeftMargin=3 +TitleBarRightMargin=3 +TitleBarTopMargin=3 +TitleSidePadding=3 TitlebarBottomMargin=3 TitlebarLeftMargin=3 TitlebarRightMargin=3 TitlebarTopMargin=3 [Windeco] +BoldButtonIcons=BoldIconsFine ButtonIconStyle=StyleSystemIconTheme ButtonShape=ShapeSmallCircle ColorizeThinWindowOutlineWithButton=false CornerRadius=5 -IconSize=IconMedium RoundBottomCornersWhenNoBorders=true SystemIconSize=SystemIcon20 + +[WindowOutlineStyle] +LockThinWindowOutlineStyleActiveInactive=true +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +WindowOutlineAccentWithContrastOpacityInactive=25 diff --git a/skel/.config/klassy/windecopresetsrc b/skel/.config/klassy/windecopresetsrc index 17ae2e6..fd6dcb7 100644 --- a/skel/.config/klassy/windecopresetsrc +++ b/skel/.config/klassy/windecopresetsrc @@ -1,54 +1,75 @@ [Global] -BundledWindecoPresetsImportedVersion=4.4.6.breeze5.27.5.git +BundledWindecoPresetsImportedVersion=6.1.breeze6.0.3 [Windeco Preset Breeze Original] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=false AdjustBackgroundColorOnPoorContrastInactive=false AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsFine BundledPreset=true -ButtonBackgroundColorsActive=TitlebarTextNegativeClose -ButtonBackgroundColorsInactive=TitlebarTextNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundColorsActive=TitleBarTextNegativeClose +ButtonBackgroundColorsInactive=TitleBarTextNegativeClose +ButtonBackgroundOpacityActive=100 +ButtonBackgroundOpacityInactive=70 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleOxygen -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeSmallCircle ButtonSpacingLeft=2 ButtonSpacingRight=2 -CloseButtonIconColorActive=AsSelected -CloseButtonIconColorInactive=AsSelected -ColorizeSystemIcons=true +ButtonStateCheckedActive=Hover +ButtonStateCheckedInactive=Hover +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=false CornerRadius=1.5 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=true +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=9 IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=None -LockButtonColorsActiveInactive=true +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=false LockButtonSpacingLeftRight=true LockCloseButtonBehaviourActive=false LockCloseButtonBehaviourInactive=false @@ -60,8 +81,16 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=true NegativeCloseBackgroundHoverPressInactive=true -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=100 ShadowColor=0,0,0 @@ -110,88 +139,106 @@ ThinWindowOutlineStyleActive=WindowOutlineShadowColor ThinWindowOutlineStyleInactive=WindowOutlineShadowColor ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=2 +TitleBarLeftMargin=2 +TitleBarRightMargin=2 +TitleBarTopMargin=2 TitleSidePadding=2 -TitlebarBottomMargin=2 -TitlebarLeftMargin=2 -TitlebarRightMargin=2 -TitlebarTopMargin=2 -TranslucentButtonBackgroundsActive=false -TranslucentButtonBackgroundsInactive=false -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=MoreTitleBar +VaryColorBackgroundInactive=MoreTitleBar +VaryColorCloseBackgroundActive=Light +VaryColorCloseBackgroundInactive=Light +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=No +VaryColorCloseOutlineInactive=No +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=No +VaryColorOutlineInactive=No +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Chroma] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=-2 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsBold BundledPreset=true ButtonBackgroundColorsActive=AccentTrafficLights ButtonBackgroundColorsInactive=AccentTrafficLights -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=87 +ButtonBackgroundOpacityInactive=38 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleOxygen -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeSmallCircle ButtonSpacingLeft=5 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=true CornerRadius=3 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=true +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=9 IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=None +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=false LockButtonSpacingLeftRight=true LockCloseButtonBehaviourActive=true @@ -204,8 +251,16 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=105 ShadowColor=0,0,0 @@ -250,92 +305,110 @@ ShowOutlineOnPressInactive=true SystemIconSize=SystemIcon18 ThinWindowOutlineCustomColorActive=0,0,0 ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineContrast -ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineStyleActive=WindowOutlineShadowColor +ThinWindowOutlineStyleInactive=WindowOutlineShadowColor ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=3 +TitleBarLeftMargin=4 +TitleBarRightMargin=4 +TitleBarTopMargin=3 TitleSidePadding=2 -TitlebarBottomMargin=3 -TitlebarLeftMargin=4 -TitlebarRightMargin=4 -TitlebarTopMargin=3 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=1 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Opaque +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Transparent +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset ClassiK v3] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsHiDpiOnly BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleKlassy -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeFullHeightRoundedRectangle ButtonSpacingLeft=3 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=false CornerRadius=2 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=0 -FullHeightButtonSpacingRight=0 -FullHeightButtonWidthMarginLeft=3 +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=4 FullHeightButtonWidthMarginRight=9 IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=None +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=NoSides +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -343,14 +416,22 @@ LockCloseButtonBehaviourInactive=true LockFullHeightButtonSpacingLeftRight=true LockFullHeightButtonWidthMargins=false LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=false LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=80 -RoundBottomCornersWhenNoBorders=false +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=true ScaleBackgroundPercent=100 ShadowColor=0,0,0 ShadowSize=ShadowLarge @@ -394,157 +475,110 @@ ShowOutlineOnPressInactive=true SystemIconSize=SystemIcon16 ThinWindowOutlineCustomColorActive=0,0,0 ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentWithContrast +ThinWindowOutlineStyleActive=WindowOutlineAccentColor ThinWindowOutlineStyleInactive=WindowOutlineAccentWithContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=2 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=2 TitleSidePadding=2 -TitlebarBottomMargin=2.3 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=2.3 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Opaque +VaryColorCloseOutlineInactive=Opaque +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Classik-Aurorae] -ActiveTitlebarOpacity=100 -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsBold -BundledPreset=true -ButtonIconStyle=StyleKlassy -ButtonShape=ShapeSmallCircle -ButtonSpacingLeft=3 -ButtonSpacingRight=6 -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=true -CornerRadius=1.6 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=1 -FullHeightButtonSpacingRight=1 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=9 -IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=Normal -LockButtonSpacingLeftRight=false -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=115 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -SystemIconSize=SystemIcon16 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineContrast -ThinWindowOutlineStyleInactive=WindowOutlineContrast -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignCenterFullWidth -TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=3 -TitlebarRightMargin=3 -TitlebarTopMargin=1.7 -UseTitlebarColorForAllBorders=true -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 - -[Windeco Preset ClassikStyles] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsHiDpiOnly +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleKlassy -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeFullHeightRectangle +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeSmallCircle ButtonSpacingLeft=3 -ButtonSpacingRight=5 +ButtonSpacingRight=6 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=false -CornerRadius=2 +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=true +CornerRadius=1.6 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=0 -FullHeightButtonSpacingRight=0 +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=9 IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=None +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -557,8 +591,186 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=115 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=false +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=3 +TitleBarRightMargin=3 +TitleBarTopMargin=1.7 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset ClassikStyles] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsHiDpiOnly +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleKlassy +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeFullHeightRectangle +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=2 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=0 +FullHeightButtonSpacingRight=0 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=9 +IconSize=IconMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=None +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=80 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=100 ShadowColor=0,0,0 @@ -607,88 +819,786 @@ ThinWindowOutlineStyleActive=WindowOutlineShadowColor ThinWindowOutlineStyleInactive=WindowOutlineShadowColor ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=2 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=2 TitleSidePadding=2 -TitlebarBottomMargin=2 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=2 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 -[Windeco Preset Garden Ornaments (install Adwaita++ icon theme)] -ActiveTitlebarOpacity=100 +[Windeco Preset Defenestrated 10] +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsBold +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsFine BundledPreset=true -ButtonBackgroundColorsActive=TitlebarText -ButtonBackgroundColorsInactive=TitlebarText -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleSystemIconTheme -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeSmallCircle -ButtonSpacingLeft=5 +ButtonBackgroundColorsActive=TitleBarTextNegativeClose +ButtonBackgroundColorsInactive=TitleBarTextNegativeClose +ButtonBackgroundOpacityActive=13 +ButtonBackgroundOpacityInactive=13 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleRedmond10 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose={"BackgroundHover":["NegativeFullySaturated"],"BackgroundPress":["NegativeFullySaturated",60]} +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose={"BackgroundHover":["NegativeFullySaturated"],"BackgroundPress":["NegativeFullySaturated",60]} +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeIntegratedRoundedRectangle +ButtonSpacingLeft=3 ButtonSpacingRight=5 -CloseButtonIconColorActive=AsSelected -CloseButtonIconColorInactive=AsSelected -ColorizeSystemIcons=true +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=false -CornerRadius=5 +CornerRadius=0 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=4 +FullHeightButtonWidthMarginRight=12 +IconSize=IconMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=None +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=50 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=false +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=false +ShowCloseOutlineOnHoverInactive=false +ShowCloseOutlineOnPressActive=false +ShowCloseOutlineOnPressInactive=false +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=false +ShowOutlineOnHoverInactive=false +ShowOutlineOnPressActive=false +ShowOutlineOnPressInactive=false +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignLeft +TitleBarBottomMargin=2.25 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=2.25 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=50 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Defenestrated 11] +ActiveTitleBarOpacity=75 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsFine +BundledPreset=true +ButtonBackgroundColorsActive=TitleBarTextNegativeClose +ButtonBackgroundColorsInactive=TitleBarTextNegativeClose +ButtonBackgroundOpacityActive=10 +ButtonBackgroundOpacityInactive=10 +ButtonCornerRadius=Custom +ButtonCustomCornerRadius=0 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleRedmond11 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose={"BackgroundHover":["NegativeFullySaturated"],"BackgroundPress":["NegativeSaturated",80]} +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose={"BackgroundHover":["NegativeFullySaturated"],"BackgroundPress":["NegativeSaturated",80]} +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeFullHeightRectangle +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=4 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=0 +FullHeightButtonSpacingRight=0 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=14 +IconSize=IconMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=0.5 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=false +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=50 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=false +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=false +ShowCloseOutlineOnHoverInactive=false +ShowCloseOutlineOnPressActive=false +ShowCloseOutlineOnPressInactive=false +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=false +ShowOutlineOnHoverInactive=false +ShowOutlineOnPressActive=false +ShowOutlineOnPressInactive=false +SystemIconSize=SystemIcon20 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignLeft +TitleBarBottomMargin=2.25 +TitleBarLeftMargin=2 +TitleBarRightMargin=0 +TitleBarTopMargin=2.25 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Defenestrated 7] +ActiveTitleBarOpacity=50 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=70 +ButtonBackgroundOpacityInactive=70 +ButtonCornerRadius=Custom +ButtonCustomCornerRadius=1.2 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveClose={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveContextHelp={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveKeepAbove={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveKeepBelow={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveMaximize={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveMenu={"BackgroundHover":[0,0,0,0],"BackgroundNormal":[0,0,0,0],"BackgroundPress":[0,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",0],"OutlineNormal":["White",0],"OutlinePress":["White",0]} +ButtonOverrideColorsActiveMinimize={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveOnAllDesktops={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsActiveShade={"BackgroundNormal":[10,0,0,0],"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveApplicationMenu={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveClose={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveContextHelp={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveKeepAbove={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveKeepBelow={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveMaximize={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveMenu={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",0],"OutlineNormal":["White",0],"OutlinePress":["White",0]} +ButtonOverrideColorsInactiveMinimize={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveOnAllDesktops={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsInactiveShade={"IconHover":["White"],"IconNormal":["White"],"IconPress":["White"],"OutlineHover":["White",60],"OutlineNormal":["White",60],"OutlinePress":["White",60]} +ButtonOverrideColorsLockStatesActive=["IconNormal","IconHover","IconPress","OutlineNormal","OutlineHover","OutlinePress"] +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeIntegratedRoundedRectangleGrouped +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=300 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=3 +DrawBackgroundGradient=true +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=0 +FullHeightButtonSpacingRight=0 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=5 +IconSize=IconMedium +InactiveTitleBarOpacity=30 +IntegratedRoundedRectangleBottomPadding=4 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=false +LockCloseButtonBehaviourInactive=false +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=BlackWhite +OnPoorIconContrastInactive=BlackWhite +OpaqueMaximizedTitleBars=false +OverrideActiveTitleBarOpacity=true +OverrideInactiveTitleBarOpacity=true +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.2 +PoorBackgroundContrastThresholdInactive=1.2 +PoorIconContrastThresholdActive=1.2 +PoorIconContrastThresholdInactive=1.2 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=true +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=true +ShowCloseOutlineNormallyInactive=true +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=true +ShowOutlineNormallyInactive=true +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignLeft +TitleBarBottomMargin=2 +TitleBarLeftMargin=3 +TitleBarRightMargin=3 +TitleBarTopMargin=2 +TitleSidePadding=3 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Light +VaryColorCloseBackgroundInactive=Light +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Light +VaryColorCloseOutlineInactive=Light +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Defenestrated 8] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=0 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose={"BackgroundNormal":[15,0,0,0]} +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeIntegratedRoundedRectangleGrouped +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=White +CloseButtonIconColorInactive=White +CloseFullHeightButtonWidthMarginRelative=300 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=0 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=8 -IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +FullHeightButtonWidthMarginRight=5 +IconSize=IconSmallMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=4.5 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=false +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=false +LockCloseButtonBehaviourInactive=false +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=true +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=false +ShowCloseOutlineOnHoverInactive=false +ShowCloseOutlineOnPressActive=false +ShowCloseOutlineOnPressInactive=false +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=false +ShowOutlineOnHoverInactive=false +ShowOutlineOnPressActive=false +ShowOutlineOnPressInactive=false +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=3 +TitleBarLeftMargin=2 +TitleBarRightMargin=2 +TitleBarTopMargin=3 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Defenestrated XP] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=false +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=79 +ButtonBackgroundOpacityInactive=50 +ButtonCornerRadius=Custom +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveClose={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveContextHelp={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveKeepAbove={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveKeepBelow={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveMaximize={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveMenu={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveMinimize={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveOnAllDesktops={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsActiveShade={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveApplicationMenu={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveClose={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveContextHelp={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveKeepAbove={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveKeepBelow={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveMaximize={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveMenu={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveMinimize={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveOnAllDesktops={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsInactiveShade={"OutlineHover":["TitleBarTextAuto",70],"OutlineNormal":["TitleBarTextAuto",70],"OutlinePress":["TitleBarTextAuto",70]} +ButtonOverrideColorsLockStatesActive=["OutlineNormal","OutlineHover","OutlinePress"] +ButtonOverrideColorsLockStatesInactive=["OutlineNormal","OutlineHover","OutlinePress"] +ButtonShape=ShapeSmallRoundedSquare +ButtonSpacingLeft=1 +ButtonSpacingRight=1 +ButtonStateCheckedActive=Hover +ButtonStateCheckedInactive=Hover +CloseButtonIconColorActive=White +CloseButtonIconColorInactive=White +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=3 +DrawBackgroundGradient=true +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=9 +IconSize=IconLargeMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=false LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -701,8 +1611,186 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=75 +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=120 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=true +ShowBackgroundNormallyInactive=true +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=true +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=true +ShowCloseOutlineNormallyInactive=true +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=true +ShowOutlineNormallyInactive=true +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineNone +ThinWindowOutlineStyleInactive=WindowOutlineNone +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignLeft +TitleBarBottomMargin=1 +TitleBarLeftMargin=2 +TitleBarRightMargin=2 +TitleBarTopMargin=1 +TitleSidePadding=4 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=LightestHover +VaryColorBackgroundInactive=LightestHover +VaryColorCloseBackgroundActive=LightestHover +VaryColorCloseBackgroundInactive=LightestHover +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=LightestHover +VaryColorCloseOutlineInactive=LightestHover +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=LightestHover +VaryColorOutlineInactive=LightestHover +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Garden Ornaments] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=TitleBarText +ButtonBackgroundColorsInactive=TitleBarText +ButtonBackgroundOpacityActive=16 +ButtonBackgroundOpacityInactive=12 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeSmallCircle +ButtonSpacingLeft=5 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=AsSelected +CloseButtonIconColorInactive=AsSelected +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=5 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=8 +IconSize=IconSmallMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=false +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=70 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=150 ShadowColor=0,0,0 @@ -751,88 +1839,106 @@ ThinWindowOutlineStyleActive=WindowOutlineContrast ThinWindowOutlineStyleInactive=WindowOutlineContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=3 +TitleBarLeftMargin=4 +TitleBarRightMargin=4 +TitleBarTopMargin=3 TitleSidePadding=2 -TitlebarBottomMargin=3 -TitlebarLeftMargin=4 -TitlebarRightMargin=4 -TitlebarTopMargin=3 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.3400000035762787 -TranslucentButtonBackgroundsOpacityInactive=0.20000000298023224 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=No +VaryColorCloseOutlineInactive=No +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=No +VaryColorOutlineInactive=No +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Glassy Klassy] -ActiveTitlebarOpacity=50 +ActiveTitleBarOpacity=50 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsHiDpiOnly BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleKlassy -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeIntegratedRoundedRectangle ButtonSpacingLeft=3 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=true CornerRadius=1 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=8 IconSize=IconLargeMedium -InactiveTitlebarOpacity=30 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=30 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -840,13 +1946,21 @@ LockCloseButtonBehaviourInactive=true LockFullHeightButtonSpacingLeftRight=true LockFullHeightButtonWidthMargins=false LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=false LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=true +OverrideInactiveTitleBarOpacity=true PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=100 ShadowColor=0,0,0 @@ -891,92 +2005,280 @@ ShowOutlineOnPressInactive=true SystemIconSize=SystemIcon16 ThinWindowOutlineCustomColorActive=0,0,0 ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentWithContrast +ThinWindowOutlineStyleActive=WindowOutlineAccentColor ThinWindowOutlineStyleInactive=WindowOutlineAccentWithContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=1.7 TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset KLCXP] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=false +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=50 +ButtonBackgroundOpacityInactive=30 +ButtonCornerRadius=Custom +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive=["OutlineNormal","OutlineHover","OutlinePress"] +ButtonOverrideColorsLockStatesInactive=["OutlineNormal","OutlineHover","OutlinePress"] +ButtonShape=ShapeSmallRoundedSquare +ButtonSpacingLeft=1 +ButtonSpacingRight=1 +ButtonStateCheckedActive=Hover +ButtonStateCheckedInactive=Hover +CloseButtonIconColorActive=White +CloseButtonIconColorInactive=White +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=3 +DrawBackgroundGradient=true +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=9 +IconSize=IconLargeMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=false +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=false +LockCloseButtonBehaviourInactive=false +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=120 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=true +ShowBackgroundNormallyInactive=true +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=true +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=true +ShowCloseOutlineNormallyInactive=true +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=false +ShowCloseOutlineOnPressInactive=false +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=true +ShowOutlineNormallyInactive=true +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=false +ShowOutlineOnPressInactive=false +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineNone +ThinWindowOutlineStyleInactive=WindowOutlineNone +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignLeft +TitleBarBottomMargin=1 +TitleBarLeftMargin=2 +TitleBarRightMargin=2 +TitleBarTopMargin=1 +TitleSidePadding=4 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=MostOpaqueHover +VaryColorBackgroundInactive=MostOpaqueHover +VaryColorCloseBackgroundActive=MostOpaqueHover +VaryColorCloseBackgroundInactive=MostOpaqueHover +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=MostOpaqueHover +VaryColorCloseOutlineInactive=MostOpaqueHover +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=MostOpaqueHover +VaryColorOutlineInactive=MostOpaqueHover +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Kite-Aurorae] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsBold BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleKite -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeSmallCircle ButtonSpacingLeft=3 ButtonSpacingRight=6 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=true CornerRadius=1.6 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=9 IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -989,8 +2291,16 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=115 ShadowColor=0,0,0 @@ -1039,88 +2349,106 @@ ThinWindowOutlineStyleActive=WindowOutlineContrast ThinWindowOutlineStyleInactive=WindowOutlineContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=3 +TitleBarRightMargin=3 +TitleBarTopMargin=1.7 TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=3 -TitlebarRightMargin=3 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Klassy] -ActiveTitlebarOpacity=100 +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsHiDpiOnly BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 ButtonIconStyle=StyleKlassy -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeIntegratedRoundedRectangle ButtonSpacingLeft=3 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=true CornerRadius=1 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=8 IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=None +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -1128,13 +2456,21 @@ LockCloseButtonBehaviourInactive=true LockFullHeightButtonSpacingLeftRight=true LockFullHeightButtonWidthMargins=false LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=false LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=100 ShadowColor=0,0,0 @@ -1179,92 +2515,110 @@ ShowOutlineOnPressInactive=true SystemIconSize=SystemIcon16 ThinWindowOutlineCustomColorActive=0,0,0 ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentWithContrast +ThinWindowOutlineStyleActive=WindowOutlineAccentColor ThinWindowOutlineStyleInactive=WindowOutlineAccentWithContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=1.7 TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 -[Windeco Preset Klassy tallscreen] -ActiveTitlebarOpacity=100 +[Windeco Preset Klassy Traditional] +ActiveTitleBarOpacity=100 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsHiDpiOnly BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleRedmond -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeIntegratedRoundedRectangle ButtonSpacingLeft=3 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=WhiteWhenHoverPress CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=true CornerRadius=1 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=8 IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=None +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=true LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -1272,13 +2626,21 @@ LockCloseButtonBehaviourInactive=true LockFullHeightButtonSpacingLeftRight=true LockFullHeightButtonWidthMargins=false LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=false LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=100 ShadowColor=0,0,0 @@ -1323,247 +2685,452 @@ ShowOutlineOnPressInactive=true SystemIconSize=SystemIcon16 ThinWindowOutlineCustomColorActive=0,0,0 ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentWithContrast +ThinWindowOutlineStyleActive=WindowOutlineAccentColor ThinWindowOutlineStyleInactive=WindowOutlineAccentWithContrast ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=1.7 TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Klassy Twilight] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsHiDpiOnly +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleKlassy +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeIntegratedRoundedRectangle +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=true +CornerRadius=1 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=true +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=8 +IconSize=IconLargeMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=false +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineShadowColor +ThinWindowOutlineStyleInactive=WindowOutlineShadowColor +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=1.7 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Klassy Twilight Traditional] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsHiDpiOnly +BundledPreset=true +ButtonBackgroundColorsActive=AccentNegativeClose +ButtonBackgroundColorsInactive=AccentNegativeClose +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= +ButtonShape=ShapeIntegratedRoundedRectangle +ButtonSpacingLeft=3 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=WhiteWhenHoverPress +CloseButtonIconColorInactive=WhiteWhenHoverPress +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=true +CornerRadius=1 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=true +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=8 +IconSize=IconLargeMedium +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=TitleBarBackground +OnPoorIconContrastInactive=TitleBarBackground +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=false +ShowBackgroundNormallyInactive=false +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=false +ShowCloseBackgroundNormallyInactive=false +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=true +ShowCloseIconNormallyInactive=true +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=false +ShowCloseOutlineNormallyInactive=false +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=true +ShowIconNormallyInactive=true +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=false +ShowOutlineNormallyInactive=false +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon16 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineShadowColor +ThinWindowOutlineStyleInactive=WindowOutlineShadowColor +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=1.7 +TitleBarLeftMargin=0 +TitleBarRightMargin=0 +TitleBarTopMargin=1.7 +TitleSidePadding=2 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Transparent +VaryColorCloseBackgroundInactive=Transparent +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Transparent +VaryColorCloseOutlineInactive=Transparent +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 [Windeco Preset Melawy] -ActiveTitlebarOpacity=75 +ActiveTitleBarOpacity=75 AdjustBackgroundColorOnPoorContrastActive=true AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsHiDpiOnly +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsFine +BundledPreset=true ButtonBackgroundColorsActive=AccentNegativeClose ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText +ButtonBackgroundOpacityActive=60 +ButtonBackgroundOpacityInactive=60 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=60 ButtonIconStyle=StyleSystemIconTheme -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeSmallCircle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=WhiteWhenHoverPress -CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=false -CornerRadius=5 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=1 -FullHeightButtonSpacingRight=1 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=8 -IconSize=IconMedium -InactiveTitlebarOpacity=75 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=Normal -LockButtonColorsActiveInactive=true -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=true -LockCloseButtonBehaviourInactive=true -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=true -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=false -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=false -ShowCloseBackgroundNormallyInactive=false -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=true -ShowCloseIconNormallyInactive=true -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=false -ShowCloseOutlineNormallyInactive=false -ShowCloseOutlineOnHoverActive=true -ShowCloseOutlineOnHoverInactive=true -ShowCloseOutlineOnPressActive=true -ShowCloseOutlineOnPressInactive=true -ShowIconNormallyActive=true -ShowIconNormallyInactive=true -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=false -ShowOutlineNormallyInactive=false -ShowOutlineOnHoverActive=true -ShowOutlineOnHoverInactive=true -ShowOutlineOnPressActive=true -ShowOutlineOnPressInactive=true -SystemIconSize=SystemIcon20 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentWithContrast -ThinWindowOutlineStyleInactive=WindowOutlineAccentWithContrast -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignCenterFullWidth -TitleSidePadding=2 -TitlebarBottomMargin=3 -TitlebarLeftMargin=3 -TitlebarRightMargin=3 -TitlebarTopMargin=3 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true - -[Windeco Preset Rotten Fruits] -ActiveTitlebarOpacity=50 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsBold -BundledPreset=true -ButtonBackgroundColorsActive=AccentTrafficLights -ButtonBackgroundColorsInactive=AccentTrafficLights -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleSystemIconTheme -ButtonOverrideColorsApplicationMenu=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsClose=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsContextHelp=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsFlagsApplicationMenu=121636608 -ButtonOverrideColorsFlagsClose=121636608 -ButtonOverrideColorsFlagsContextHelp=121636608 -ButtonOverrideColorsFlagsKeepAbove=121636608 -ButtonOverrideColorsFlagsKeepBelow=121636608 -ButtonOverrideColorsFlagsMaximize=121636608 -ButtonOverrideColorsFlagsMenu=121636608 -ButtonOverrideColorsFlagsMinimize=121636608 -ButtonOverrideColorsFlagsOnAllDesktops=121636608 -ButtonOverrideColorsFlagsShade=121636608 -ButtonOverrideColorsKeepAbove=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsKeepBelow=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsLockStates=4196096 -ButtonOverrideColorsMaximize=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsMenu=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsMinimize=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsOnAllDesktops=335544320,335544320,335544320,335544320,335544320,335544320,335544320 -ButtonOverrideColorsShade=335544320,335544320,335544320,335544320,335544320,335544320,335544320 +ButtonOverrideColorsActiveApplicationMenu= +ButtonOverrideColorsActiveClose= +ButtonOverrideColorsActiveContextHelp= +ButtonOverrideColorsActiveKeepAbove= +ButtonOverrideColorsActiveKeepBelow= +ButtonOverrideColorsActiveMaximize= +ButtonOverrideColorsActiveMenu= +ButtonOverrideColorsActiveMinimize= +ButtonOverrideColorsActiveOnAllDesktops= +ButtonOverrideColorsActiveShade= +ButtonOverrideColorsInactiveApplicationMenu= +ButtonOverrideColorsInactiveClose= +ButtonOverrideColorsInactiveContextHelp= +ButtonOverrideColorsInactiveKeepAbove= +ButtonOverrideColorsInactiveKeepBelow= +ButtonOverrideColorsInactiveMaximize= +ButtonOverrideColorsInactiveMenu= +ButtonOverrideColorsInactiveMinimize= +ButtonOverrideColorsInactiveOnAllDesktops= +ButtonOverrideColorsInactiveShade= +ButtonOverrideColorsLockStatesActive= +ButtonOverrideColorsLockStatesInactive= ButtonShape=ShapeSmallCircle ButtonSpacingLeft=5 ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=AsSelected CloseButtonIconColorInactive=AsSelected -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=false CornerRadius=5 DrawBackgroundGradient=false DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=9 -IconSize=IconMedium -InactiveTitlebarOpacity=30 +FullHeightButtonWidthMarginRight=8 +IconSize=IconLargeMedium +InactiveTitleBarOpacity=75 IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=None -LockButtonColorsActiveInactive=false -LockButtonSpacingLeftRight=true +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=true +LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true LockCloseButtonBehaviourInactive=true LockFullHeightButtonSpacingLeftRight=true @@ -1572,11 +3139,19 @@ LockThinWindowOutlineCustomColorActiveInactive=true LockThinWindowOutlineStyleActiveInactive=true LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +NegativeCloseBackgroundHoverPressActive=true +NegativeCloseBackgroundHoverPressInactive=true +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=true ScaleBackgroundPercent=100 ShadowColor=0,0,0 ShadowSize=ShadowLarge @@ -1593,438 +3168,6 @@ ShowCloseBackgroundOnHoverActive=true ShowCloseBackgroundOnHoverInactive=true ShowCloseBackgroundOnPressActive=true ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=false -ShowCloseIconNormallyInactive=false -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=true -ShowCloseOutlineNormallyInactive=true -ShowCloseOutlineOnHoverActive=true -ShowCloseOutlineOnHoverInactive=true -ShowCloseOutlineOnPressActive=true -ShowCloseOutlineOnPressInactive=true -ShowIconNormallyActive=false -ShowIconNormallyInactive=false -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=true -ShowOutlineNormallyInactive=true -ShowOutlineOnHoverActive=true -ShowOutlineOnHoverInactive=true -ShowOutlineOnPressActive=true -ShowOutlineOnPressInactive=true -SystemIconSize=SystemIcon18 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineContrast -ThinWindowOutlineStyleInactive=WindowOutlineContrast -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignCenterFullWidth -TitleSidePadding=2 -TitlebarBottomMargin=3.5 -TitlebarLeftMargin=5 -TitlebarRightMargin=5 -TitlebarTopMargin=3.5 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.800000011920929 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true - -[Windeco Preset Tronkite] -ActiveTitlebarOpacity=100 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsHiDpiOnly -BundledPreset=true -ButtonBackgroundColorsActive=AccentNegativeClose -ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=AccentNegativeClose -ButtonIconColorsInactive=AccentNegativeClose -ButtonIconStyle=StyleKite -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeFullHeightRoundedRectangle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=AsSelected -CloseButtonIconColorInactive=AsSelected -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=true -CornerRadius=1 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=1 -FullHeightButtonSpacingRight=1 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=8 -IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=None -LockButtonColorsActiveInactive=true -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=true -LockCloseButtonBehaviourInactive=true -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=false -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=false -ShowCloseBackgroundNormallyInactive=false -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=true -ShowCloseIconNormallyInactive=true -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=true -ShowCloseOutlineNormallyInactive=true -ShowCloseOutlineOnHoverActive=true -ShowCloseOutlineOnHoverInactive=true -ShowCloseOutlineOnPressActive=true -ShowCloseOutlineOnPressInactive=true -ShowIconNormallyActive=true -ShowIconNormallyInactive=true -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=true -ShowOutlineNormallyInactive=true -ShowOutlineOnHoverActive=true -ShowOutlineOnHoverInactive=true -ShowOutlineOnPressActive=true -ShowOutlineOnPressInactive=true -SystemIconSize=SystemIcon16 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineAccentColor -ThinWindowOutlineStyleInactive=WindowOutlineAccentColor -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignCenterFullWidth -TitleSidePadding=2 -TitlebarBottomMargin=1.25 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=1.25 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.66 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.6 -WindowOutlineAccentWithContrastOpacityInactive=0.49 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true - -[Windeco Preset Windows 10] -ActiveTitlebarOpacity=100 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsFine -BundledPreset=true -ButtonBackgroundColorsActive=TitlebarTextNegativeClose -ButtonBackgroundColorsInactive=TitlebarTextNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleRedmond10 -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeFullHeightRectangle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=WhiteWhenHoverPress -CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=false -CornerRadius=0 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=1 -FullHeightButtonSpacingRight=1 -FullHeightButtonWidthMarginLeft=4 -FullHeightButtonWidthMarginRight=11 -IconSize=IconMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=None -LockButtonColorsActiveInactive=true -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=true -LockCloseButtonBehaviourInactive=true -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=false -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=false -ShowCloseBackgroundNormallyInactive=false -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=true -ShowCloseIconNormallyInactive=true -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=false -ShowCloseOutlineNormallyInactive=false -ShowCloseOutlineOnHoverActive=false -ShowCloseOutlineOnHoverInactive=false -ShowCloseOutlineOnPressActive=false -ShowCloseOutlineOnPressInactive=false -ShowIconNormallyActive=true -ShowIconNormallyInactive=true -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=false -ShowOutlineNormallyInactive=false -ShowOutlineOnHoverActive=false -ShowOutlineOnHoverInactive=false -ShowOutlineOnPressActive=false -ShowOutlineOnPressInactive=false -SystemIconSize=SystemIcon16 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineContrast -ThinWindowOutlineStyleInactive=WindowOutlineContrast -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignLeft -TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=0 -TitlebarRightMargin=0 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true - -[Windeco Preset Windows 11 (install Cobalt icon theme)] -ActiveTitlebarOpacity=75 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsFine -BundledPreset=true -ButtonBackgroundColorsActive=TitlebarTextNegativeClose -ButtonBackgroundColorsInactive=TitlebarTextNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleSystemIconTheme -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeFullHeightRectangle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=WhiteWhenHoverPress -CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=false -CornerRadius=4 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=0 -FullHeightButtonSpacingRight=0 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=15 -IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 -KwinBorderSize=Normal -LockButtonColorsActiveInactive=true -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=true -LockCloseButtonBehaviourInactive=true -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=false -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=false -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=false -ShowCloseBackgroundNormallyInactive=false -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true ShowCloseIconNormallyActive=true ShowCloseIconNormallyInactive=true ShowCloseIconOnHoverActive=true @@ -2055,387 +3198,107 @@ ThinWindowOutlineCustomColorInactive=0,0,0 ThinWindowOutlineStyleActive=WindowOutlineContrast ThinWindowOutlineStyleInactive=WindowOutlineContrast ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignLeft -TitleSidePadding=0 -TitlebarBottomMargin=2 -TitlebarLeftMargin=2 -TitlebarRightMargin=0 -TitlebarTopMargin=2 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.6299999952316284 -TranslucentButtonBackgroundsOpacityInactive=0.6299999952316284 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true - -[Windeco Preset Windows 7] -ActiveTitlebarOpacity=50 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsBold -BundledPreset=true -ButtonBackgroundColorsActive=AccentNegativeClose -ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleRedmond -ButtonOverrideColorsApplicationMenu=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsClose=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsContextHelp=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsFlagsApplicationMenu=117442304 -ButtonOverrideColorsFlagsClose=117442304 -ButtonOverrideColorsFlagsContextHelp=117442304 -ButtonOverrideColorsFlagsKeepAbove=117442304 -ButtonOverrideColorsFlagsKeepBelow=117442304 -ButtonOverrideColorsFlagsMaximize=117442304 -ButtonOverrideColorsFlagsMenu=117442304 -ButtonOverrideColorsFlagsMinimize=117442304 -ButtonOverrideColorsFlagsOnAllDesktops=117442304 -ButtonOverrideColorsFlagsShade=117442304 -ButtonOverrideColorsKeepAbove=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsKeepBelow=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsLockStates=117442311 -ButtonOverrideColorsMaximize=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsMenu=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsMinimize=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsOnAllDesktops=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonOverrideColorsShade=1677721600,1677721600,1677721600,1677721600,1677721600,1677721600 -ButtonShape=ShapeIntegratedRoundedRectangle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=WhiteWhenHoverPress -CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=false -CornerRadius=1 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=0 -FullHeightButtonSpacingRight=0 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=10 -IconSize=IconMedium -InactiveTitlebarOpacity=20 -IntegratedRoundedRectangleBottomPadding=3 -KwinBorderSize=Normal -LockButtonColorsActiveInactive=true -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=true -LockCloseButtonBehaviourInactive=true -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=true -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=true -ShowCloseBackgroundNormallyInactive=false -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=true -ShowCloseIconNormallyInactive=true -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=true -ShowCloseOutlineNormallyInactive=true -ShowCloseOutlineOnHoverActive=true -ShowCloseOutlineOnHoverInactive=true -ShowCloseOutlineOnPressActive=true -ShowCloseOutlineOnPressInactive=true -ShowIconNormallyActive=true -ShowIconNormallyInactive=true -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=true -ShowOutlineNormallyInactive=true -ShowOutlineOnHoverActive=true -ShowOutlineOnHoverInactive=true -ShowOutlineOnPressActive=true -ShowOutlineOnPressInactive=true -SystemIconSize=SystemIcon16 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineShadowColor -ThinWindowOutlineStyleInactive=WindowOutlineShadowColor -ThinWindowOutlineThickness=1.75 -TitleAlignment=AlignLeft -TitleSidePadding=3 -TitlebarBottomMargin=2 -TitlebarLeftMargin=2 -TitlebarRightMargin=2 -TitlebarTopMargin=2 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=false - -[Windeco Preset Windows 8] -ActiveTitlebarOpacity=100 -AdjustBackgroundColorOnPoorContrastActive=true -AdjustBackgroundColorOnPoorContrastInactive=true -AnimationsEnabled=true -AnimationsSpeedRelativeSystem=0 -ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=true -BlackWhiteIconOnPoorContrastInactive=true -BlurTransparentTitlebars=true -BoldButtonIcons=BoldIconsFine -BundledPreset=true -ButtonBackgroundColorsActive=AccentNegativeClose -ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleRedmond -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 -ButtonShape=ShapeIntegratedRoundedRectangle -ButtonSpacingLeft=3 -ButtonSpacingRight=5 -CloseButtonIconColorActive=WhiteWhenHoverPress -CloseButtonIconColorInactive=WhiteWhenHoverPress -ColorizeSystemIcons=true -ColorizeThinWindowOutlineWithButton=true -CornerRadius=0 -DrawBackgroundGradient=false -DrawBorderOnMaximizedWindows=false -DrawTitleBarSeparator=false -FullHeightButtonSpacingLeft=1 -FullHeightButtonSpacingRight=1 -FullHeightButtonWidthMarginLeft=3 -FullHeightButtonWidthMarginRight=10 -IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=4 -KwinBorderSize=Normal -LockButtonColorsActiveInactive=false -LockButtonSpacingLeftRight=false -LockCloseButtonBehaviourActive=false -LockCloseButtonBehaviourInactive=false -LockFullHeightButtonSpacingLeftRight=true -LockFullHeightButtonWidthMargins=false -LockThinWindowOutlineCustomColorActiveInactive=true -LockThinWindowOutlineStyleActiveInactive=true -LockTitleBarLeftRightMargins=true -LockTitleBarTopBottomMargins=true -NegativeCloseBackgroundHoverPressActive=false -NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true -PercentMaximizedTopBottomMargins=100 -RoundBottomCornersWhenNoBorders=false -ScaleBackgroundPercent=100 -ShadowColor=0,0,0 -ShadowSize=ShadowLarge -ShadowStrength=255 -ShowBackgroundNormallyActive=false -ShowBackgroundNormallyInactive=false -ShowBackgroundOnHoverActive=true -ShowBackgroundOnHoverInactive=true -ShowBackgroundOnPressActive=true -ShowBackgroundOnPressInactive=true -ShowCloseBackgroundNormallyActive=true -ShowCloseBackgroundNormallyInactive=true -ShowCloseBackgroundOnHoverActive=true -ShowCloseBackgroundOnHoverInactive=true -ShowCloseBackgroundOnPressActive=true -ShowCloseBackgroundOnPressInactive=true -ShowCloseIconNormallyActive=true -ShowCloseIconNormallyInactive=true -ShowCloseIconOnHoverActive=true -ShowCloseIconOnHoverInactive=true -ShowCloseIconOnPressActive=true -ShowCloseIconOnPressInactive=true -ShowCloseOutlineNormallyActive=true -ShowCloseOutlineNormallyInactive=true -ShowCloseOutlineOnHoverActive=true -ShowCloseOutlineOnHoverInactive=true -ShowCloseOutlineOnPressActive=true -ShowCloseOutlineOnPressInactive=true -ShowIconNormallyActive=true -ShowIconNormallyInactive=true -ShowIconOnHoverActive=true -ShowIconOnHoverInactive=true -ShowIconOnPressActive=true -ShowIconOnPressInactive=true -ShowOutlineNormallyActive=false -ShowOutlineNormallyInactive=false -ShowOutlineOnHoverActive=true -ShowOutlineOnHoverInactive=true -ShowOutlineOnPressActive=true -ShowOutlineOnPressInactive=true -SystemIconSize=SystemIcon16 -ThinWindowOutlineCustomColorActive=0,0,0 -ThinWindowOutlineCustomColorInactive=0,0,0 -ThinWindowOutlineStyleActive=WindowOutlineShadowColor -ThinWindowOutlineStyleInactive=WindowOutlineShadowColor -ThinWindowOutlineThickness=1.75 TitleAlignment=AlignCenterFullWidth -TitleSidePadding=2 -TitlebarBottomMargin=1.7 -TitlebarLeftMargin=2 -TitlebarRightMargin=2 -TitlebarTopMargin=1.7 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.75 -TranslucentButtonBackgroundsOpacityInactive=0.5 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +TitleBarBottomMargin=3 +TitleBarLeftMargin=3 +TitleBarRightMargin=3 +TitleBarTopMargin=3 +TitleSidePadding=3 +UseHoverAccentActive=true +UseHoverAccentInactive=true +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=No +VaryColorCloseOutlineInactive=No +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=No +VaryColorOutlineInactive=No +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=25 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 -[Windeco Preset Windows XP] -ActiveTitlebarOpacity=100 -AdjustBackgroundColorOnPoorContrastActive=true +[Windeco Preset Plastik] +ActiveTitleBarOpacity=100 +AdjustBackgroundColorOnPoorContrastActive=false AdjustBackgroundColorOnPoorContrastInactive=true AnimationsEnabled=true AnimationsSpeedRelativeSystem=0 ApplyOpacityToHeader=true -BlackWhiteIconOnPoorContrastActive=false -BlackWhiteIconOnPoorContrastInactive=false -BlurTransparentTitlebars=true +BlurTransparentTitleBars=true BoldButtonIcons=BoldIconsBold BundledPreset=true -ButtonBackgroundColorsActive=AccentNegativeClose -ButtonBackgroundColorsInactive=AccentNegativeClose -ButtonIconColorsActive=TitlebarText -ButtonIconColorsInactive=TitlebarText -ButtonIconStyle=StyleRedmond -ButtonOverrideColorsFlagsApplicationMenu=0 -ButtonOverrideColorsFlagsClose=0 -ButtonOverrideColorsFlagsContextHelp=0 -ButtonOverrideColorsFlagsKeepAbove=0 -ButtonOverrideColorsFlagsKeepBelow=0 -ButtonOverrideColorsFlagsMaximize=0 -ButtonOverrideColorsFlagsMenu=0 -ButtonOverrideColorsFlagsMinimize=0 -ButtonOverrideColorsFlagsOnAllDesktops=0 -ButtonOverrideColorsFlagsShade=0 -ButtonOverrideColorsLockStates=0 +ButtonBackgroundColorsActive=TitleBarTextNegativeClose +ButtonBackgroundColorsInactive=TitleBarTextNegativeClose +ButtonBackgroundOpacityActive=40 +ButtonBackgroundOpacityInactive=25 +ButtonCornerRadius=Custom +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleTraditional +ButtonOverrideColorsActiveApplicationMenu={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveClose={"BackgroundNormal":["White",10],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveContextHelp={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveKeepAbove={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveKeepBelow={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveMaximize={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveMenu={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveMinimize={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveOnAllDesktops={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsActiveShade={"BackgroundHover":["White",50],"BackgroundNormal":["White",10],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveApplicationMenu={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveClose={"BackgroundNormal":["White",5],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveContextHelp={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveKeepAbove={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveKeepBelow={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveMaximize={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveMenu={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveMinimize={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveOnAllDesktops={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsInactiveShade={"BackgroundHover":["White",50],"BackgroundNormal":["White",5],"BackgroundPress":[20,0,0,0],"OutlineHover":[55,50,50,50],"OutlineNormal":[50,0,0,0],"OutlinePress":[60,0,0,0]} +ButtonOverrideColorsLockStatesActive=["BackgroundNormal","BackgroundHover","BackgroundPress","OutlineNormal","OutlineHover","OutlinePress"] +ButtonOverrideColorsLockStatesInactive=["BackgroundNormal","BackgroundHover","OutlineNormal","OutlineHover","OutlinePress"] ButtonShape=ShapeSmallRoundedSquare ButtonSpacingLeft=1 ButtonSpacingRight=1 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press CloseButtonIconColorActive=AsSelected CloseButtonIconColorInactive=AsSelected -ColorizeSystemIcons=true +CloseFullHeightButtonWidthMarginRelative=100 ColorizeThinWindowOutlineWithButton=false CornerRadius=3 DrawBackgroundGradient=true DrawBorderOnMaximizedWindows=false DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true FullHeightButtonSpacingLeft=1 FullHeightButtonSpacingRight=1 FullHeightButtonWidthMarginLeft=3 FullHeightButtonWidthMarginRight=9 IconSize=IconLargeMedium -InactiveTitlebarOpacity=100 -IntegratedRoundedRectangleBottomPadding=1.25 +InactiveTitleBarOpacity=100 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze KwinBorderSize=Normal +LockButtonBehaviourActiveInactive=true LockButtonColorsActiveInactive=false LockButtonSpacingLeftRight=false LockCloseButtonBehaviourActive=true @@ -2448,8 +3311,16 @@ LockTitleBarLeftRightMargins=true LockTitleBarTopBottomMargins=true NegativeCloseBackgroundHoverPressActive=false NegativeCloseBackgroundHoverPressInactive=false -OpaqueMaximizedTitlebars=true +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 RoundBottomCornersWhenNoBorders=false ScaleBackgroundPercent=120 ShadowColor=0,0,0 @@ -2498,37 +3369,204 @@ ThinWindowOutlineStyleActive=WindowOutlineShadowColor ThinWindowOutlineStyleInactive=WindowOutlineShadowColor ThinWindowOutlineThickness=1.75 TitleAlignment=AlignLeft +TitleBarBottomMargin=1 +TitleBarLeftMargin=2 +TitleBarRightMargin=2 +TitleBarTopMargin=1 +TitleSidePadding=4 +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=LightestHover +VaryColorBackgroundInactive=LightestHover +VaryColorCloseBackgroundActive=LightestHover +VaryColorCloseBackgroundInactive=LightestHover +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=LightestHover +VaryColorCloseOutlineInactive=LightestHover +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=LightestHover +VaryColorOutlineInactive=LightestHover +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 + +[Windeco Preset Rotten Fruits] +ActiveTitleBarOpacity=50 +AdjustBackgroundColorOnPoorContrastActive=true +AdjustBackgroundColorOnPoorContrastInactive=true +AnimationsEnabled=true +AnimationsSpeedRelativeSystem=0 +ApplyOpacityToHeader=true +BlurTransparentTitleBars=true +BoldButtonIcons=BoldIconsBold +BundledPreset=true +ButtonBackgroundColorsActive=AccentTrafficLights +ButtonBackgroundColorsInactive=AccentTrafficLights +ButtonBackgroundOpacityActive=85 +ButtonBackgroundOpacityInactive=50 +ButtonCornerRadius=SameAsWindow +ButtonCustomCornerRadius=1 +ButtonIconColorsActive=TitleBarText +ButtonIconColorsInactive=TitleBarText +ButtonIconOpacityActive=100 +ButtonIconOpacityInactive=100 +ButtonIconStyle=StyleOxygen +ButtonOverrideColorsActiveApplicationMenu={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveClose={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveContextHelp={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveKeepAbove={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveKeepBelow={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveMaximize={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveMenu={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveMinimize={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveOnAllDesktops={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsActiveShade={"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveApplicationMenu={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveClose={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveContextHelp={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveKeepAbove={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveKeepBelow={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveMaximize={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveMenu={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveMinimize={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveOnAllDesktops={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsInactiveShade={"BackgroundNormal":["TitleBarTextAuto",8],"OutlineHover":[10,0,0,0],"OutlineNormal":[10,0,0,0],"OutlinePress":[10,0,0,0]} +ButtonOverrideColorsLockStatesActive=["OutlineNormal","OutlineHover","OutlinePress"] +ButtonOverrideColorsLockStatesInactive=["BackgroundNormal","OutlineNormal","OutlineHover","OutlinePress"] +ButtonShape=ShapeSmallCircle +ButtonSpacingLeft=5 +ButtonSpacingRight=5 +ButtonStateCheckedActive=Press +ButtonStateCheckedInactive=Press +CloseButtonIconColorActive=AsSelected +CloseButtonIconColorInactive=AsSelected +CloseFullHeightButtonWidthMarginRelative=100 +ColorizeThinWindowOutlineWithButton=false +CornerRadius=5 +DrawBackgroundGradient=false +DrawBorderOnMaximizedWindows=false +DrawTitleBarSeparator=false +ForceColorizeSystemIcons=true +FullHeightButtonSpacingLeft=1 +FullHeightButtonSpacingRight=1 +FullHeightButtonWidthMarginLeft=3 +FullHeightButtonWidthMarginRight=9 +IconSize=IconMedium +InactiveTitleBarOpacity=30 +IntegratedRoundedRectangleBottomPadding=1 +KlassyDarkIconThemeInherits=breeze-dark +KlassyIconThemeInherits=breeze +KwinBorderSize=None +LockButtonBehaviourActiveInactive=true +LockButtonColorsActiveInactive=false +LockButtonSpacingLeftRight=true +LockCloseButtonBehaviourActive=true +LockCloseButtonBehaviourInactive=true +LockFullHeightButtonSpacingLeftRight=true +LockFullHeightButtonWidthMargins=false +LockThinWindowOutlineCustomColorActiveInactive=true +LockThinWindowOutlineStyleActiveInactive=true +LockTitleBarLeftRightMargins=true +LockTitleBarTopBottomMargins=true +NegativeCloseBackgroundHoverPressActive=false +NegativeCloseBackgroundHoverPressInactive=false +OnPoorIconContrastActive=Nothing +OnPoorIconContrastInactive=Nothing +OpaqueMaximizedTitleBars=true +OverrideActiveTitleBarOpacity=false +OverrideInactiveTitleBarOpacity=false +PercentMaximizedTopBottomMargins=100 +PoorBackgroundContrastThresholdActive=1.1 +PoorBackgroundContrastThresholdInactive=1.1 +PoorIconContrastThresholdActive=1.5 +PoorIconContrastThresholdInactive=1.5 +RoundBottomCornersWhenNoBorders=false +ScaleBackgroundPercent=100 +ShadowColor=0,0,0 +ShadowSize=ShadowLarge +ShadowStrength=255 +ShowBackgroundNormallyActive=true +ShowBackgroundNormallyInactive=true +ShowBackgroundOnHoverActive=true +ShowBackgroundOnHoverInactive=true +ShowBackgroundOnPressActive=true +ShowBackgroundOnPressInactive=true +ShowCloseBackgroundNormallyActive=true +ShowCloseBackgroundNormallyInactive=true +ShowCloseBackgroundOnHoverActive=true +ShowCloseBackgroundOnHoverInactive=true +ShowCloseBackgroundOnPressActive=true +ShowCloseBackgroundOnPressInactive=true +ShowCloseIconNormallyActive=false +ShowCloseIconNormallyInactive=false +ShowCloseIconOnHoverActive=true +ShowCloseIconOnHoverInactive=true +ShowCloseIconOnPressActive=true +ShowCloseIconOnPressInactive=true +ShowCloseOutlineNormallyActive=true +ShowCloseOutlineNormallyInactive=true +ShowCloseOutlineOnHoverActive=true +ShowCloseOutlineOnHoverInactive=true +ShowCloseOutlineOnPressActive=true +ShowCloseOutlineOnPressInactive=true +ShowIconNormallyActive=false +ShowIconNormallyInactive=false +ShowIconOnHoverActive=true +ShowIconOnHoverInactive=true +ShowIconOnPressActive=true +ShowIconOnPressInactive=true +ShowOutlineNormallyActive=true +ShowOutlineNormallyInactive=true +ShowOutlineOnHoverActive=true +ShowOutlineOnHoverInactive=true +ShowOutlineOnPressActive=true +ShowOutlineOnPressInactive=true +SystemIconSize=SystemIcon18 +ThinWindowOutlineCustomColorActive=0,0,0 +ThinWindowOutlineCustomColorInactive=0,0,0 +ThinWindowOutlineStyleActive=WindowOutlineContrast +ThinWindowOutlineStyleInactive=WindowOutlineContrast +ThinWindowOutlineThickness=1.75 +TitleAlignment=AlignCenterFullWidth +TitleBarBottomMargin=3.5 +TitleBarLeftMargin=5 +TitleBarRightMargin=5 +TitleBarTopMargin=3.5 TitleSidePadding=2 -TitlebarBottomMargin=1 -TitlebarLeftMargin=1 -TitlebarRightMargin=1 -TitlebarTopMargin=1 -TranslucentButtonBackgroundsActive=true -TranslucentButtonBackgroundsInactive=true -TranslucentButtonBackgroundsOpacityActive=0.5 -TranslucentButtonBackgroundsOpacityInactive=0.30000001192092896 -UseTitlebarColorForAllBorders=true -VaryColorBackgroundActive=true -VaryColorBackgroundInactive=true -VaryColorCloseBackgroundActive=true -VaryColorCloseBackgroundInactive=true -VaryColorCloseIconActive=false -VaryColorCloseIconInactive=false -VaryColorCloseOutlineActive=false -VaryColorCloseOutlineInactive=false -VaryColorIconActive=false -VaryColorIconInactive=false -VaryColorOutlineActive=false -VaryColorOutlineInactive=false -WindowOutlineAccentColorOpacityActive=0.87 -WindowOutlineAccentColorOpacityInactive=0.4 -WindowOutlineAccentWithContrastOpacityActive=0.4 -WindowOutlineAccentWithContrastOpacityInactive=0.25 -WindowOutlineContrastOpacityActive=0.25 -WindowOutlineContrastOpacityInactive=0.25 -WindowOutlineCustomColorOpacityActive=0.87 -WindowOutlineCustomColorOpacityInactive=0.3 -WindowOutlineCustomWithContrastOpacityActive=0.4 -WindowOutlineCustomWithContrastOpacityInactive=0.25 -WindowOutlineShadowColorOpacity=0.2 -lockButtonBehaviourActiveInactive=true +UseHoverAccentActive=false +UseHoverAccentInactive=false +UseTitleBarColorForAllBorders=true +VaryColorBackgroundActive=Opaque +VaryColorBackgroundInactive=Opaque +VaryColorCloseBackgroundActive=Opaque +VaryColorCloseBackgroundInactive=Opaque +VaryColorCloseIconActive=No +VaryColorCloseIconInactive=No +VaryColorCloseOutlineActive=Opaque +VaryColorCloseOutlineInactive=Opaque +VaryColorIconActive=No +VaryColorIconInactive=No +VaryColorOutlineActive=Opaque +VaryColorOutlineInactive=Opaque +WindowOutlineAccentColorOpacityActive=67 +WindowOutlineAccentColorOpacityInactive=25 +WindowOutlineAccentWithContrastOpacityActive=50 +WindowOutlineAccentWithContrastOpacityInactive=20 +WindowOutlineContrastOpacityActive=25 +WindowOutlineContrastOpacityInactive=25 +WindowOutlineCustomColorOpacityActive=60 +WindowOutlineCustomColorOpacityInactive=25 +WindowOutlineCustomWithContrastOpacityActive=40 +WindowOutlineCustomWithContrastOpacityInactive=25 +WindowOutlineShadowColorOpacity=20 diff --git a/skel/.config/konsolerc b/skel/.config/konsolerc index 94e08d7..5c6e82c 100644 --- a/skel/.config/konsolerc +++ b/skel/.config/konsolerc @@ -26,7 +26,6 @@ HDMI-0=HDMI-0 HDMI-1=HDMI-1 LVDS=LVDS RestorePositionForNextInstance=false -State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAZABAAAD+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABHwEAAAMAAAO4AAABoAAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAATn/////AAAAAAAAAAA= ToolBarsMovable=Disabled [UiSettings] diff --git a/skel/.config/kwinrc b/skel/.config/kwinrc index a1fc57a..dff918a 100644 --- a/skel/.config/kwinrc +++ b/skel/.config/kwinrc @@ -11,6 +11,8 @@ Rows=2 [NightColor] Active=true +LatitudeAuto=56.84 +LongitudeAuto=60.65 [Plugins] blurEnabled=true @@ -43,6 +45,12 @@ tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"wi [Tiling][b2284830-89aa-5fb4-ae47-5cc8afa4d682] tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]} +[Tiling][b299385c-7b66-5185-b362-3a2d93cebf21] +tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]} + +[Tiling][c6fbeba8-20aa-54cf-af8e-fc755df5e797] +tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]} + [Tiling][e460f24c-0802-5ae0-b5a4-3e2eda27ed36] tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]} @@ -57,5 +65,3 @@ BorderSize=Normal BorderSizeAuto=false ButtonsOnLeft= ButtonsOnRight=IAX -library=org.kde.klassy -theme=Klassy diff --git a/skel/.config/plasma-org.kde.plasma.desktop-appletsrc b/skel/.config/plasma-org.kde.plasma.desktop-appletsrc index ad74633..dbd19c1 100644 --- a/skel/.config/plasma-org.kde.plasma.desktop-appletsrc +++ b/skel/.config/plasma-org.kde.plasma.desktop-appletsrc @@ -1,12 +1,11 @@ [ActionPlugins][0] MiddleButton;NoModifier=org.kde.paste RightButton;NoModifier=org.kde.contextmenu -wheel:Vertical;NoModifier=org.kde.switchdesktop [ActionPlugins][1] RightButton;NoModifier=org.kde.contextmenu -[Containments][162] +[Containments][292] ItemGeometries-1920x1080= ItemGeometriesHorizontal= activityId=84c85f49-02a4-464c-9302-b31556fcbbb7 @@ -17,7 +16,7 @@ location=0 plugin=org.kde.plasma.folder wallpaperplugin=org.kde.image -[Containments][163] +[Containments][293] activityId= formfactor=2 immutability=1 @@ -26,146 +25,174 @@ location=4 plugin=org.kde.panel wallpaperplugin=org.kde.image -[Containments][163][Applets][164] +[Containments][293][Applets][294] immutability=1 -plugin=com.github.adhec.Menu11 +plugin=org.kde.plasma.kickoff -[Containments][163][Applets][165] +[Containments][293][Applets][294][Configuration] +PreloadWeight=100 +popupHeight=508 +popupWidth=679 + +[Containments][293][Applets][294][Configuration][General] +appDescription=hidden +appListWidth=400 +compactMode=true +defaultAppListView=TilesOnly +defaultTileColor=#e4606060 +defaultTileGradient=true +favGridCols=7 +favorites=melawy-welcome.desktop,systemsettings.desktop,pamac.desktop,org.kde.dolphin.desktop,org.kde.konsole.desktop,org.kde.kcalc.desktop,org.kde.kate.desktop,code.desktop,org.telegram.desktop.desktop,com.discordapp.Discord.desktop,Zoom.desktop,firefoxdeveloperedition.desktop,firefox.desktop,brave-browser.desktop,google-chrome.desktop +favoritesPortedToKAstats=true +floating=true +fullscreen=true +groupLabelAlignment=center +icon=/usr/share/plasma/desktoptheme/Melawy-round-gray/icons/start.svg +menuItemHeight=24 +numRecentApps=10 +popupHeight=700 +searchFieldFollowsTheme=true +searchFieldHeight=36 +searchResultsMerged=false +showActionButtonCaptions=false +sidebarButtonSize=36 +sidebarFollowsTheme=true +sidebarIconSize=24 +systemFavorites= +tileLabelAlignment=center + +[Containments][293][Applets][295] immutability=1 -plugin=org.kde.milou +plugin=org.kde.plasma.pager -[Containments][163][Applets][166] -immutability=1 -plugin=com.github.zren.presentwindows - -[Containments][163][Applets][166][Configuration][General] -icon=multitasking-view - -[Containments][163][Applets][167] +[Containments][293][Applets][296] immutability=1 plugin=org.kde.plasma.icontasks -[Containments][163][Applets][167][Configuration] +[Containments][293][Applets][296][Configuration] launchers= -[Containments][163][Applets][167][Configuration][General] +[Containments][293][Applets][296][Configuration][General] iconSpacing=0 indicateAudioStreams=true -launchers=applications:melawy-welcome.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kcalc.desktop,applications:org.kde.kate.desktop,applications:code.desktop,applications:org.telegram.desktop.desktop,applications:discord.desktop,applications:Zoom.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:brave-browser.desktop,applications:google-chrome.desktop +launchers=applications:melawy-welcome.desktop,applications:systemsettings.desktop,applications:pamac.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kcalc.desktop,applications:org.kde.kate.desktop,applications:code.desktop,applications:org.telegram.desktop.desktop,applications:com.discordapp.Discord.desktop,applications:Zoom.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:brave-browser.desktop,applications:google-chrome.desktop maxStripes=1 -[Containments][163][Applets][168] +[Containments][293][Applets][297] immutability=1 plugin=org.kde.plasma.panelspacer -[Containments][163][Applets][169] +[Containments][293][Applets][298] immutability=1 plugin=org.kde.plasma.systemtray -[Containments][163][Applets][169][Configuration] -PreloadWeight=55 -SystrayContainmentId=170 +[Containments][293][Applets][298][Configuration] +SystrayContainmentId=299 -[Containments][163][Applets][182] +[Containments][293][Applets][311] immutability=1 plugin=org.kde.plasma.digitalclock -[Containments][163][Applets][182][Configuration][Appearance] -autoFontAndSize=false -fontSize=11 +[Containments][293][Applets][311][Configuration][Appearance] +autoFontAndSize=true +fontSize=12 showSeconds=true -[Containments][163][Applets][183] +[Containments][293][Applets][312] immutability=1 plugin=org.kde.plasma.notifications -[Containments][163][Applets][184] +[Containments][293][Applets][313] immutability=1 -plugin=com.github.zren.win7showdesktop +plugin=org.kde.plasma.win7showdesktop -[Containments][163][Applets][184][Configuration][General] +[Containments][293][Applets][313][Configuration][General] edgeColor=#66888888 -size=5 +hoveredColor=#66777777 +pressedColor=#66555555 +size=7 -[Containments][163][General] -AppletOrder=164;165;166;167;168;169;182;183;184 +[Containments][293][General] +AppletOrder=294;295;296;297;298;311;312;313 -[Containments][170] +[Containments][299] activityId= formfactor=2 immutability=1 -lastScreen=0 +lastScreen=-1 location=4 plugin=org.kde.plasma.private.systemtray wallpaperplugin=org.kde.image -[Containments][170][Applets][171] +[Containments][299][Applets][300] immutability=1 plugin=org.kde.kdeconnect -[Containments][170][Applets][172] +[Containments][299][Applets][301] immutability=1 plugin=org.kde.plasma.clipboard -[Containments][170][Applets][173] +[Containments][299][Applets][302] immutability=1 plugin=org.kde.plasma.devicenotifier -[Containments][170][Applets][174] +[Containments][299][Applets][303] immutability=1 plugin=org.kde.plasma.manage-inputmethod -[Containments][170][Applets][175] -immutability=1 -plugin=org.kde.plasma.notifications +[Containments][299][Applets][304][Configuration] +PreloadWeight=42 -[Containments][170][Applets][176] -immutability=1 -plugin=org.kde.plasma.keyboardindicator - -[Containments][170][Applets][177] -immutability=1 -plugin=org.kde.kscreen - -[Containments][170][Applets][178] +[Containments][299][Applets][305] immutability=1 plugin=org.kde.plasma.keyboardlayout -[Containments][170][Applets][179] +[Containments][299][Applets][305][Configuration] +PreloadWeight=55 + +[Containments][299][Applets][306] +immutability=1 +plugin=org.kde.plasma.keyboardindicator + +[Containments][299][Applets][307] +immutability=1 +plugin=org.kde.kscreen + +[Containments][299][Applets][308] immutability=1 plugin=org.kde.plasma.volume -[Containments][170][Applets][179][Configuration][General] +[Containments][299][Applets][308][Configuration][General] migrated=true -[Containments][170][Applets][180] +[Containments][299][Applets][309] immutability=1 plugin=org.kde.plasma.vault -[Containments][170][Applets][181] +[Containments][299][Applets][310] immutability=1 -plugin=com.github.Melawy.ArchUpdate +plugin=org.kde.plasma.cameraindicator -[Containments][170][Applets][185] -immutability=1 -plugin=org.kde.plasma.nightcolorcontrol - -[Containments][170][Applets][186] +[Containments][299][Applets][314] immutability=1 plugin=org.kde.plasma.battery -[Containments][170][Applets][187] +[Containments][299][Applets][315] immutability=1 -plugin=org.kde.plasma.networkmanagement +plugin=org.kde.plasma.brightness -[Containments][170][Applets][188] +[Containments][299][Applets][316] immutability=1 plugin=org.kde.plasma.bluetooth -[Containments][170][General] -extraItems=org.kde.plasma.bluetooth,org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.vault,com.github.Melawy.ArchUpdate +[Containments][299][Applets][317] +immutability=1 +plugin=org.kde.plasma.networkmanagement + +[Containments][299][General] +extraItems=org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.keyboardlayout,org.kde.plasma.bluetooth,org.kde.plasma.keyboardindicator,org.kde.kscreen,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.vault,org.kde.plasma.brightness,org.kde.plasma.cameraindicator iconSpacing=2 -knownItems=org.kde.plasma.bluetooth,org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.vault,com.github.Melawy.ArchUpdate +knownItems=org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.plasma.keyboardlayout,org.kde.plasma.bluetooth,org.kde.plasma.keyboardindicator,org.kde.kscreen,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.vault,org.kde.plasma.brightness,org.kde.plasma.cameraindicator [ScreenMapping] itemsOnDisabledScreens= diff --git a/skel/.config/plasmashellrc b/skel/.config/plasmashellrc index 2597621..25cf300 100644 --- a/skel/.config/plasmashellrc +++ b/skel/.config/plasmashellrc @@ -1,11 +1,9 @@ [KPropertiesDialog] 1920x1080 screen: Width=874 -[PlasmaTransientsConfig] -PreloadWeight=0 - [PlasmaViews][Panel 109] alignment=132 +floating=0 [PlasmaViews][Panel 109][Defaults] offset=0 @@ -13,6 +11,7 @@ thickness=36 [PlasmaViews][Panel 136] alignment=132 +floating=0 [PlasmaViews][Panel 136][Defaults] offset=0 @@ -20,6 +19,7 @@ thickness=36 [PlasmaViews][Panel 163] alignment=132 +floating=1 [PlasmaViews][Panel 163][Defaults] offset=0 @@ -40,18 +40,53 @@ floating=1 [PlasmaViews][Panel 2][Defaults] thickness=36 +[PlasmaViews][Panel 215] +floating=1 + +[PlasmaViews][Panel 215][Defaults] +offset=0 +thickness=36 + +[PlasmaViews][Panel 240] +floating=1 + +[PlasmaViews][Panel 240][Defaults] +offset=0 +thickness=36 + +[PlasmaViews][Panel 267] +floating=1 + +[PlasmaViews][Panel 267][Defaults] +offset=0 +thickness=36 + +[PlasmaViews][Panel 293] +floating=1 + +[PlasmaViews][Panel 293][Defaults] +offset=0 +thickness=36 + +[PlasmaViews][Panel 30] +floating=0 + [PlasmaViews][Panel 30][Defaults] thickness=44 +[PlasmaViews][Panel 57] +floating=0 + [PlasmaViews][Panel 57][Defaults] thickness=44 [PlasmaViews][Panel 82] alignment=132 +floating=0 [PlasmaViews][Panel 82][Defaults] offset=0 thickness=36 [Updates] -performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js +performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_showseconds_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/migrate_font_weights.js diff --git a/skel/.config/powerdevilrc b/skel/.config/powerdevilrc index 9559d5c..d8d5133 100644 --- a/skel/.config/powerdevilrc +++ b/skel/.config/powerdevilrc @@ -1,2 +1,6 @@ +[AC][SuspendAndShutdown] +AutoSuspendIdleTimeoutSec=1800 +SleepMode=3 + [BatteryManagement] BatteryCriticalAction=1 diff --git a/skel/.config/powermanagementprofilesrc b/skel/.config/powermanagementprofilesrc index b45ef7d..037bc10 100644 --- a/skel/.config/powermanagementprofilesrc +++ b/skel/.config/powermanagementprofilesrc @@ -65,3 +65,7 @@ triggerLidActionWhenExternalMonitorPresent=false idleTime=300000 suspendThenHibernate=false suspendType=1 + +[Migration] +MigratedActivitiesToPlasma6=powerdevilrc +MigratedProfilesToPlasma6=powerdevilrc diff --git a/skel/.config/xsettingsd/xsettingsd.conf b/skel/.config/xsettingsd/xsettingsd.conf index 2b9b507..572d893 100644 --- a/skel/.config/xsettingsd/xsettingsd.conf +++ b/skel/.config/xsettingsd/xsettingsd.conf @@ -1,9 +1,10 @@ +Net/SoundThemeName "ocean" Net/ThemeName "Melawy-round-Dark-compact" Gdk/UnscaledDPI 98304 Gdk/WindowScalingFactor 1 Gtk/EnableAnimations 1 Gtk/DecorationLayout ":minimize,maximize,close" -Gtk/PrimaryButtonWarpsSlider 0 +Gtk/PrimaryButtonWarpsSlider 1 Gtk/ToolbarStyle 3 Gtk/MenuImages 1 Gtk/ButtonImages 1 diff --git a/skel/.gtkrc-2.0 b/skel/.gtkrc-2.0 index d13799a..eab4d76 100644 --- a/skel/.gtkrc-2.0 +++ b/skel/.gtkrc-2.0 @@ -1,6 +1,7 @@ +gtk-sound-theme-name="ocean" gtk-theme-name="Melawy-round-Dark-compact" gtk-enable-animations=1 -gtk-primary-button-warps-slider=0 +gtk-primary-button-warps-slider=1 gtk-toolbar-style=3 gtk-menu-images=1 gtk-button-images=1 diff --git a/skel/.local/share/dolphin/dolphinstaterc b/skel/.local/share/dolphin/dolphinstaterc index 199320f..65006da 100644 --- a/skel/.local/share/dolphin/dolphinstaterc +++ b/skel/.local/share/dolphin/dolphinstaterc @@ -7,14 +7,12 @@ 1366x768 screen: Width=1366 1366x768 screen: XPosition=0 1366x768 screen: YPosition=30 -1920x1080 screen: Height=654 +1920x1080 screen: Height=650 1920x1080 screen: Width=1272 -1920x1080 screen: Window-Maximized=true -1920x1080 screen: XPosition=293 -1920x1080 screen: YPosition=153 +1920x1080 screen: XPosition=324 +1920x1080 screen: YPosition=212 :0.0=:0.0 HDMI-0=HDMI-0 HDMI-1=HDMI-1 LVDS=LVDS -RestorePositionForNextInstance=false -State=AAAA/wAAAAD9AAAAAwAAAAAAAADDAAADvvwCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAA/////wAAAAoBAAAD+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAuAAADvgAAAGcBAAADAAAAAQAAAOoAAAO+/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAQAAAC4AAAO+AAABGQEAAAMAAAADAAAHgAAAAUj8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAHgAAAAJEBAAADAAAF0QAAA74AAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA= +State=AAAA/wAAAAD9AAAAAwAAAAAAAADDAAACXPwCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAA/////wAAAAAA////+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAuAAACXAAAAFMA////AAAAAQAAAOoAAAJc/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAQAAAC4AAAJcAAABBQD///8AAAADAAAHgAAAAUj8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAHgAAAAAAA////AAADSQAAAlwAAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA= diff --git a/skel/.local/share/dolphin/view_properties/global/.directory b/skel/.local/share/dolphin/view_properties/global/.directory index 4e9a954..e09dc9f 100644 --- a/skel/.local/share/dolphin/view_properties/global/.directory +++ b/skel/.local/share/dolphin/view_properties/global/.directory @@ -1,6 +1,6 @@ [Dolphin] HeaderColumnWidths=428,74,83,126,85,77,72 -Timestamp=2023,11,15,23,16,3.6189999999999998 +Timestamp=2024,5,3,22,12,4.599 Version=4 ViewMode=1 VisibleRoles=CustomizedDetails,Details_text,Details_type,Details_size,Details_modificationtime,Details_permissions,Details_owner,Details_group