Update
This commit is contained in:
parent
0a1088e514
commit
a51a238df4
|
@ -6,6 +6,4 @@ Root specific skel setup for Melawy Linux
|
||||||
|
|
||||||
[YooMoney](https://yoomoney.ru/to/4100115921160758)
|
[YooMoney](https://yoomoney.ru/to/4100115921160758)
|
||||||
|
|
||||||
[Qiwi](https://qiwi.com/n/VALERIAFADEEVA)
|
|
||||||
|
|
||||||
Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f
|
Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f
|
||||||
|
|
162
root/.bashrc
162
root/.bashrc
|
@ -11,76 +11,112 @@ fi
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
if ! shopt -oq posix; then
|
colors() {
|
||||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
local fgc bgc vals seq0
|
||||||
. /usr/share/bash-completion/bash_completion
|
|
||||||
elif [ -f /etc/bash_completion ]; then
|
printf "Color escapes are %s\n" '\e[${value};...;${value}m'
|
||||||
. /etc/bash_completion
|
printf "Values 30..37 are \e[33mforeground colors\e[m\n"
|
||||||
fi
|
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}$(</etc/DIR_COLORS)"
|
||||||
|
[[ -z ${match_lhs} ]] \
|
||||||
|
&& type -P dircolors >/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
|
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
|
xhost +local:root > /dev/null 2>&1
|
||||||
|
|
||||||
complete -cf sudo
|
# Bash won't get SIGWINCH if another process is in the foreground.
|
||||||
|
# Enable checkwinsize so that bash will check the terminal size when
|
||||||
shopt -s cdspell
|
# it regains control. #65623
|
||||||
|
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
|
||||||
shopt -s checkwinsize
|
shopt -s checkwinsize
|
||||||
shopt -s cmdhist
|
|
||||||
shopt -s dotglob
|
|
||||||
shopt -s expand_aliases
|
shopt -s expand_aliases
|
||||||
shopt -s extglob
|
|
||||||
|
# export QT_SELECT=4
|
||||||
|
|
||||||
|
# Enable history appending instead of overwriting. #139609
|
||||||
shopt -s histappend
|
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 <file>
|
|
||||||
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-daemon -q
|
||||||
POWERLINE_BASH_CONTINUATION=1
|
POWERLINE_BASH_CONTINUATION=1
|
||||||
|
|
|
@ -11,7 +11,7 @@ KWinPalette\inactiveBlend=#3e3e3e
|
||||||
KWinPalette\inactiveForeground=#9b9b9b
|
KWinPalette\inactiveForeground=#9b9b9b
|
||||||
KWinPalette\inactiveFrame=#424242
|
KWinPalette\inactiveFrame=#424242
|
||||||
KWinPalette\inactiveTitleBtnBg=#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\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, #7a5258, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #aaaaaa
|
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, #6b4349, #aea6a8, #c48790, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #aaaaaa
|
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,50,0,0,0,0,0"
|
font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1"
|
||||||
|
|
|
@ -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
|
Binary file not shown.
|
@ -15,7 +15,7 @@
|
||||||
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
||||||
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
||||||
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
|
@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 link_visited_color_breeze #ce80ff;
|
||||||
@define-color success_color_backdrop_breeze #318654;
|
@define-color success_color_backdrop_breeze #318654;
|
||||||
@define-color success_color_breeze #1e884a;
|
@define-color success_color_breeze #1e884a;
|
||||||
|
@ -27,17 +27,17 @@
|
||||||
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
||||||
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
||||||
@define-color theme_button_background_normal_breeze #505050;
|
@define-color theme_button_background_normal_breeze #505050;
|
||||||
@define-color theme_button_decoration_focus_backdrop_breeze #c6878f;
|
@define-color theme_button_decoration_focus_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_focus_breeze #eb7587;
|
@define-color theme_button_decoration_focus_breeze #50b4ce;
|
||||||
@define-color theme_button_decoration_focus_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_focus_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_hover_backdrop_breeze #c6878f;
|
@define-color theme_button_decoration_hover_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_hover_breeze #eb7587;
|
@define-color theme_button_decoration_hover_breeze #50b4ce;
|
||||||
@define-color theme_button_decoration_hover_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_hover_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_foreground_active_backdrop_breeze #aea6a8;
|
@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_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_active_insensitive_breeze #616161;
|
||||||
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
|
@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_breeze #c8c8c8;
|
||||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
||||||
@define-color theme_hovering_selected_bg_color_breeze #eb7587;
|
@define-color theme_hovering_selected_bg_color_breeze #50b4ce;
|
||||||
@define-color theme_selected_bg_color_breeze #b96673;
|
@define-color theme_selected_bg_color_breeze #1d6c8b;
|
||||||
@define-color theme_selected_fg_color_breeze #ffffff;
|
@define-color theme_selected_fg_color_breeze #c8c8c8;
|
||||||
@define-color theme_text_color_breeze #aaaaaa;
|
@define-color theme_text_color_breeze #aaaaaa;
|
||||||
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
||||||
@define-color theme_titlebar_background_breeze #3c3c3c;
|
@define-color theme_titlebar_background_breeze #3c3c3c;
|
||||||
|
@ -65,14 +65,14 @@
|
||||||
@define-color theme_unfocused_base_color_breeze #474747;
|
@define-color theme_unfocused_base_color_breeze #474747;
|
||||||
@define-color theme_unfocused_bg_color_breeze #424242;
|
@define-color theme_unfocused_bg_color_breeze #424242;
|
||||||
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
|
@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_alt_breeze #225163;
|
||||||
@define-color theme_unfocused_selected_bg_color_breeze #6b4349;
|
@define-color theme_unfocused_selected_bg_color_breeze #225163;
|
||||||
@define-color theme_unfocused_selected_fg_color_breeze #aea6a8;
|
@define-color theme_unfocused_selected_fg_color_breeze #9babb1;
|
||||||
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
||||||
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
||||||
@define-color theme_unfocused_view_text_color_breeze #646464;
|
@define-color theme_unfocused_view_text_color_breeze #646464;
|
||||||
@define-color theme_view_active_decoration_color_breeze #eb7587;
|
@define-color theme_view_active_decoration_color_breeze #1d6c8b;
|
||||||
@define-color theme_view_hover_decoration_color_breeze #eb7587;
|
@define-color theme_view_hover_decoration_color_breeze #1d6c8b;
|
||||||
@define-color tooltip_background_breeze #1d6c8b;
|
@define-color tooltip_background_breeze #1d6c8b;
|
||||||
@define-color tooltip_border_breeze #48839a;
|
@define-color tooltip_border_breeze #48839a;
|
||||||
@define-color tooltip_text_breeze #c8c8c8;
|
@define-color tooltip_text_breeze #c8c8c8;
|
||||||
|
|
|
@ -9,7 +9,8 @@ gtk-font-name=Noto Sans, 10
|
||||||
gtk-icon-theme-name=Melawy-blue-dark
|
gtk-icon-theme-name=Melawy-blue-dark
|
||||||
gtk-menu-images=true
|
gtk-menu-images=true
|
||||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
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-theme-name=Melawy-round-Dark-compact
|
||||||
gtk-toolbar-style=3
|
gtk-toolbar-style=3
|
||||||
gtk-xft-dpi=98304
|
gtk-xft-dpi=98304
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
@define-color insensitive_unfocused_fg_color_breeze #616161;
|
||||||
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
|
||||||
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
|
@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 link_visited_color_breeze #ce80ff;
|
||||||
@define-color success_color_backdrop_breeze #318654;
|
@define-color success_color_backdrop_breeze #318654;
|
||||||
@define-color success_color_breeze #1e884a;
|
@define-color success_color_breeze #1e884a;
|
||||||
|
@ -27,17 +27,17 @@
|
||||||
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
|
||||||
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
@define-color theme_button_background_insensitive_breeze #4c4c4c;
|
||||||
@define-color theme_button_background_normal_breeze #505050;
|
@define-color theme_button_background_normal_breeze #505050;
|
||||||
@define-color theme_button_decoration_focus_backdrop_breeze #c6878f;
|
@define-color theme_button_decoration_focus_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_focus_breeze #eb7587;
|
@define-color theme_button_decoration_focus_breeze #50b4ce;
|
||||||
@define-color theme_button_decoration_focus_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_focus_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_hover_backdrop_breeze #c6878f;
|
@define-color theme_button_decoration_hover_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_decoration_hover_breeze #eb7587;
|
@define-color theme_button_decoration_hover_breeze #50b4ce;
|
||||||
@define-color theme_button_decoration_hover_insensitive_breeze #80595f;
|
@define-color theme_button_decoration_hover_insensitive_breeze #4c6e76;
|
||||||
@define-color theme_button_foreground_active_backdrop_breeze #aea6a8;
|
@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_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_active_insensitive_breeze #616161;
|
||||||
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
|
||||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
|
@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_breeze #c8c8c8;
|
||||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
|
||||||
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
|
||||||
@define-color theme_hovering_selected_bg_color_breeze #eb7587;
|
@define-color theme_hovering_selected_bg_color_breeze #50b4ce;
|
||||||
@define-color theme_selected_bg_color_breeze #b96673;
|
@define-color theme_selected_bg_color_breeze #1d6c8b;
|
||||||
@define-color theme_selected_fg_color_breeze #ffffff;
|
@define-color theme_selected_fg_color_breeze #c8c8c8;
|
||||||
@define-color theme_text_color_breeze #aaaaaa;
|
@define-color theme_text_color_breeze #aaaaaa;
|
||||||
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
|
||||||
@define-color theme_titlebar_background_breeze #3c3c3c;
|
@define-color theme_titlebar_background_breeze #3c3c3c;
|
||||||
|
@ -65,14 +65,14 @@
|
||||||
@define-color theme_unfocused_base_color_breeze #474747;
|
@define-color theme_unfocused_base_color_breeze #474747;
|
||||||
@define-color theme_unfocused_bg_color_breeze #424242;
|
@define-color theme_unfocused_bg_color_breeze #424242;
|
||||||
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
|
@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_alt_breeze #225163;
|
||||||
@define-color theme_unfocused_selected_bg_color_breeze #6b4349;
|
@define-color theme_unfocused_selected_bg_color_breeze #225163;
|
||||||
@define-color theme_unfocused_selected_fg_color_breeze #aea6a8;
|
@define-color theme_unfocused_selected_fg_color_breeze #9babb1;
|
||||||
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
@define-color theme_unfocused_text_color_breeze #a8a8a8;
|
||||||
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
@define-color theme_unfocused_view_bg_color_breeze #434343;
|
||||||
@define-color theme_unfocused_view_text_color_breeze #646464;
|
@define-color theme_unfocused_view_text_color_breeze #646464;
|
||||||
@define-color theme_view_active_decoration_color_breeze #eb7587;
|
@define-color theme_view_active_decoration_color_breeze #1d6c8b;
|
||||||
@define-color theme_view_hover_decoration_color_breeze #eb7587;
|
@define-color theme_view_hover_decoration_color_breeze #1d6c8b;
|
||||||
@define-color tooltip_background_breeze #1d6c8b;
|
@define-color tooltip_background_breeze #1d6c8b;
|
||||||
@define-color tooltip_border_breeze #48839a;
|
@define-color tooltip_border_breeze #48839a;
|
||||||
@define-color tooltip_text_breeze #c8c8c8;
|
@define-color tooltip_text_breeze #c8c8c8;
|
||||||
|
|
|
@ -7,6 +7,7 @@ gtk-enable-animations=true
|
||||||
gtk-font-name=Noto Sans, 10
|
gtk-font-name=Noto Sans, 10
|
||||||
gtk-icon-theme-name=Melawy-blue-dark
|
gtk-icon-theme-name=Melawy-blue-dark
|
||||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
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-theme-name=Melawy-round-Dark-compact
|
||||||
gtk-xft-dpi=98304
|
gtk-xft-dpi=98304
|
||||||
|
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
@ -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
|
gtk-alternative-button-order = 1
|
||||||
|
|
|
@ -61,9 +61,9 @@ done=Plasma_Fonts_Kate
|
||||||
mtime=1698157670
|
mtime=1698157670
|
||||||
|
|
||||||
[gtkconfig.upd]
|
[gtkconfig.upd]
|
||||||
ctime=1699418128
|
ctime=1714201965
|
||||||
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
|
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
|
||||||
mtime=1698159270
|
mtime=1713344090
|
||||||
|
|
||||||
[gwenview.upd]
|
[gwenview.upd]
|
||||||
ctime=1700463809
|
ctime=1700463809
|
||||||
|
@ -81,8 +81,8 @@ done=migrate_kate_sessions_applet_to_kdeplasma-addons
|
||||||
mtime=1699471323
|
mtime=1699471323
|
||||||
|
|
||||||
[kcalcrc.upd]
|
[kcalcrc.upd]
|
||||||
ctime=1699623801
|
ctime=1712981816
|
||||||
mtime=1699371607
|
mtime=1712689767
|
||||||
|
|
||||||
[kcm_rename_plasma_desktop.upd]
|
[kcm_rename_plasma_desktop.upd]
|
||||||
ctime=1698168145
|
ctime=1698168145
|
||||||
|
@ -135,9 +135,9 @@ done=ksmserver_update_loginMode_value_default_enum
|
||||||
mtime=1698159753
|
mtime=1698159753
|
||||||
|
|
||||||
[kwin.upd]
|
[kwin.upd]
|
||||||
ctime=1698168143
|
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
|
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=1698157131
|
mtime=1713786347
|
||||||
|
|
||||||
[kwinrules.upd]
|
[kwinrules.upd]
|
||||||
ctime=1698168143
|
ctime=1698168143
|
||||||
|
@ -154,16 +154,46 @@ ctime=1698168145
|
||||||
done=split-variants
|
done=split-variants
|
||||||
mtime=1698159753
|
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]
|
[okular.upd]
|
||||||
ctime=1699623803
|
ctime=1699623803
|
||||||
done=annotation-toolbar,builtin-annotations
|
done=annotation-toolbar,builtin-annotations
|
||||||
mtime=1699365007
|
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]
|
[plasmashell-5.27-use-panel-thickness-in-default-group.upd]
|
||||||
ctime=1700339322
|
ctime=1700339322
|
||||||
done=plasmashell-5.27-use-panel-thickness-in-default-group
|
done=plasmashell-5.27-use-panel-thickness-in-default-group
|
||||||
mtime=1699791123
|
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]
|
[spectacle_clipboard.upd]
|
||||||
ctime=1699623807
|
ctime=1699623807
|
||||||
done=clipboard-settings-change
|
done=clipboard-settings-change
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
[Greeter]
|
[Greeter]
|
||||||
Theme=org.kde.breeze.desktop
|
Theme=com.github.Melawy.Melawy-round-gray.Nier-A2.desktop
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
[TabBox]
|
[TabBox]
|
||||||
DesktopLayout=org.kde.breeze.desktop
|
|
||||||
DesktopListLayout=org.kde.breeze.desktop
|
|
||||||
LayoutName=coverswitch
|
LayoutName=coverswitch
|
||||||
|
|
||||||
[Windows]
|
[Windows]
|
||||||
|
|
|
@ -24,13 +24,13 @@ IntensityAmount=0
|
||||||
IntensityEffect=0
|
IntensityEffect=0
|
||||||
|
|
||||||
[Colors:Button]
|
[Colors:Button]
|
||||||
BackgroundAlternate=188,105,118
|
BackgroundAlternate=30,87,116
|
||||||
BackgroundNormal=80,80,80
|
BackgroundNormal=80,80,80
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=80,180,206
|
||||||
DecorationHover=235,117,135
|
DecorationHover=80,180,206
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=255,128,224
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=46,184,230
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=80,180,206
|
ForegroundNormal=80,180,206
|
||||||
|
@ -40,11 +40,11 @@ ForegroundVisited=206,128,255
|
||||||
[Colors:Complementary]
|
[Colors:Complementary]
|
||||||
BackgroundAlternate=30,87,116
|
BackgroundAlternate=30,87,116
|
||||||
BackgroundNormal=60,60,60
|
BackgroundNormal=60,60,60
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=61,174,233
|
||||||
DecorationHover=235,117,135
|
DecorationHover=61,174,233
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=61,174,233
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=29,153,243
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=252,252,252
|
ForegroundNormal=252,252,252
|
||||||
|
@ -54,11 +54,11 @@ ForegroundVisited=155,89,182
|
||||||
[Colors:Header]
|
[Colors:Header]
|
||||||
BackgroundAlternate=90,90,90
|
BackgroundAlternate=90,90,90
|
||||||
BackgroundNormal=60,60,60
|
BackgroundNormal=60,60,60
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=61,174,233
|
||||||
DecorationHover=235,117,135
|
DecorationHover=61,174,233
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=61,174,233
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=29,153,243
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=200,200,200
|
ForegroundNormal=200,200,200
|
||||||
|
@ -80,27 +80,27 @@ ForegroundPositive=39,174,96
|
||||||
ForegroundVisited=155,89,182
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
[Colors:Selection]
|
[Colors:Selection]
|
||||||
BackgroundAlternate=185,102,115
|
BackgroundAlternate=30,87,116
|
||||||
BackgroundNormal=185,102,115
|
BackgroundNormal=29,108,139
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=80,180,206
|
||||||
DecorationHover=235,117,135
|
DecorationHover=80,180,206
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=255,128,224
|
||||||
ForegroundInactive=255,255,255
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=46,184,230
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=255,255,255
|
ForegroundNormal=200,200,200
|
||||||
ForegroundPositive=30,136,74
|
ForegroundPositive=30,136,74
|
||||||
ForegroundVisited=206,128,255
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
[Colors:Tooltip]
|
[Colors:Tooltip]
|
||||||
BackgroundAlternate=60,60,60
|
BackgroundAlternate=60,60,60
|
||||||
BackgroundNormal=29,108,139
|
BackgroundNormal=29,108,139
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=80,180,206
|
||||||
DecorationHover=235,117,135
|
DecorationHover=29,108,139
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=255,128,224
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=46,184,230
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=200,200,200
|
ForegroundNormal=200,200,200
|
||||||
|
@ -110,11 +110,11 @@ ForegroundVisited=206,128,255
|
||||||
[Colors:View]
|
[Colors:View]
|
||||||
BackgroundAlternate=75,75,75
|
BackgroundAlternate=75,75,75
|
||||||
BackgroundNormal=70,70,70
|
BackgroundNormal=70,70,70
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=29,108,139
|
||||||
DecorationHover=235,117,135
|
DecorationHover=29,108,139
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=255,128,224
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=46,184,230
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=170,170,170
|
ForegroundNormal=170,170,170
|
||||||
|
@ -124,11 +124,11 @@ ForegroundVisited=206,128,255
|
||||||
[Colors:Window]
|
[Colors:Window]
|
||||||
BackgroundAlternate=60,60,60
|
BackgroundAlternate=60,60,60
|
||||||
BackgroundNormal=65,65,65
|
BackgroundNormal=65,65,65
|
||||||
DecorationFocus=235,117,135
|
DecorationFocus=29,108,139
|
||||||
DecorationHover=235,117,135
|
DecorationHover=29,108,139
|
||||||
ForegroundActive=235,117,135
|
ForegroundActive=255,128,224
|
||||||
ForegroundInactive=170,170,170
|
ForegroundInactive=170,170,170
|
||||||
ForegroundLink=235,117,135
|
ForegroundLink=46,184,230
|
||||||
ForegroundNegative=218,68,83
|
ForegroundNegative=218,68,83
|
||||||
ForegroundNeutral=246,116,0
|
ForegroundNeutral=246,116,0
|
||||||
ForegroundNormal=170,170,170
|
ForegroundNormal=170,170,170
|
||||||
|
@ -136,7 +136,6 @@ ForegroundPositive=30,136,74
|
||||||
ForegroundVisited=206,128,255
|
ForegroundVisited=206,128,255
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
AccentColor=235,117,135
|
|
||||||
BrowserApplication=firefox.desktop
|
BrowserApplication=firefox.desktop
|
||||||
ColorSchemeHash=227e6da9f2081194c0dddb365a90643d776d4f15
|
ColorSchemeHash=227e6da9f2081194c0dddb365a90643d776d4f15
|
||||||
Name[ru_RU]=Breeze, светлый вариант
|
Name[ru_RU]=Breeze, светлый вариант
|
||||||
|
@ -151,7 +150,6 @@ LookAndFeelPackage=com.github.Melawy.Melawy-round-gray.Nier-A2.desktop
|
||||||
ShowDeleteCommand=false
|
ShowDeleteCommand=false
|
||||||
SingleClick=false
|
SingleClick=false
|
||||||
contrast=4
|
contrast=4
|
||||||
widgetStyle=Klassy
|
|
||||||
|
|
||||||
[KFileDialog Settings]
|
[KFileDialog Settings]
|
||||||
Allow Expansion=false
|
Allow Expansion=false
|
||||||
|
|
|
@ -4,6 +4,7 @@ switch-to-activity-357d5349-fd6a-4e36-8d43-33270dc1e4c5=none,none,Переклю
|
||||||
switch-to-activity-84c85f49-02a4-464c-9302-b31556fcbbb7=none,none,Переключиться на комнату «Начальная комната»
|
switch-to-activity-84c85f49-02a4-464c-9302-b31556fcbbb7=none,none,Переключиться на комнату «Начальная комната»
|
||||||
|
|
||||||
[KDE Keyboard Layout Switcher]
|
[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,Выбрать следующую раскладку клавиатуры
|
Switch to Next Keyboard Layout=Meta+Alt+K,Meta+Alt+K,Выбрать следующую раскладку клавиатуры
|
||||||
_k_friendly_name=Переключение раскладки клавиатуры
|
_k_friendly_name=Переключение раскладки клавиатуры
|
||||||
|
|
||||||
|
@ -17,11 +18,6 @@ Enable Touchpad=Touchpad On,Touchpad On,Включить сенсорную па
|
||||||
Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель
|
Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель
|
||||||
_k_friendly_name=Сенсорная панель
|
_k_friendly_name=Сенсорная панель
|
||||||
|
|
||||||
[kded5]
|
|
||||||
Show System Activity=Ctrl+Esc,Ctrl+Esc,Показать активность системы
|
|
||||||
_k_friendly_name=KDE Daemon
|
|
||||||
display=Display\tMeta+P,Display\tMeta+P,Сменить экран
|
|
||||||
|
|
||||||
[khotkeys]
|
[khotkeys]
|
||||||
_k_friendly_name=Служба пользовательских комбинаций клавиш
|
_k_friendly_name=Служба пользовательских комбинаций клавиш
|
||||||
{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск
|
{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск
|
||||||
|
@ -30,27 +26,34 @@ _k_friendly_name=Служба пользовательских комбинац
|
||||||
_k_friendly_name=Громкость
|
_k_friendly_name=Громкость
|
||||||
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона
|
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона
|
||||||
decrease_volume=Volume Down,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_microphone_volume=Microphone Volume Up,Microphone Volume Up,Увеличить громкость микрофона
|
||||||
increase_volume=Volume Up,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,Выключить микрофон
|
mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Выключить микрофон
|
||||||
mute=Volume Mute,Volume Mute,Выключить звук
|
mute=Volume Mute,Volume Mute,Выключить звук
|
||||||
|
|
||||||
[ksmserver]
|
[ksmserver]
|
||||||
Halt Without Confirmation=none,,Выключить компьютер без подтверждения
|
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=Ctrl+Alt+Del,Ctrl+Alt+Del,Завершить сеанс
|
||||||
Log Out Without Confirmation=none,,Завершить сеанс без подтверждения
|
Log Out Without Confirmation=none,,Завершить сеанс без подтверждения
|
||||||
|
Reboot=none,,Перезагрузить компьютер
|
||||||
Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения
|
Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения
|
||||||
_k_friendly_name=Управление сеансами
|
Shut Down=none,,Выключить компьютер
|
||||||
|
_k_friendly_name=Session Management
|
||||||
|
|
||||||
[kwin]
|
[kwin]
|
||||||
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания
|
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания
|
||||||
|
Cycle Overview=none,none,Переключение между режимом обзора и просмотром сеткой
|
||||||
|
Cycle Overview Opposite=none,none,Переключение между просмотром сеткой и режимом обзора
|
||||||
Decrease Opacity=none,,Уменьшить непрозрачность окна на 5%
|
Decrease Opacity=none,,Уменьшить непрозрачность окна на 5%
|
||||||
Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон
|
Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон
|
||||||
Expose=Ctrl+F9,Ctrl+F9,Показать все окна с текущего рабочего стола
|
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,Показать окна одного класса
|
ExposeClass=Ctrl+F7,Ctrl+F7,Показать окна одного класса
|
||||||
ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола
|
ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола
|
||||||
|
Grid View=Meta+G,Meta+G,Включить или отключить режим просмотра сеткой
|
||||||
Increase Opacity=none,,Увеличить непрозрачность окна на 5%
|
Increase Opacity=none,,Увеличить непрозрачность окна на 5%
|
||||||
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно
|
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно
|
||||||
Move Tablet to Next Output=none,none,Переключить планшет к следующему выходу
|
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,,Переключиться на экран справа
|
Switch to Screen to the Right=none,,Переключиться на экран справа
|
||||||
Toggle Night Color=none,none,Включить или отключить ночную цветовую схему
|
Toggle Night Color=none,none,Включить или отключить ночную цветовую схему
|
||||||
Toggle Window Raise/Lower=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=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=none,,На одно окно вперёд (альтернативный режим)
|
||||||
Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим)
|
Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим)
|
||||||
Walk Through Windows of Current Application=Alt+`,Alt+`,На одно окно вперёд текущего приложения
|
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 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 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 Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Окно на один рабочий стол вправо
|
||||||
Window One Screen Down=none,,Window One Screen Down
|
Window One Screen Down=none,,Переместить окно на один экран вниз
|
||||||
Window One Screen Up=none,,Window One Screen Up
|
Window One Screen Up=none,,Переместить окно на один экран вверх
|
||||||
Window One Screen to the Left=none,,Window One Screen to the Left
|
Window One Screen to the Left=none,,Переместить окно на один экран влево
|
||||||
Window One Screen to the Right=none,,Window One Screen to the Right
|
Window One Screen to the Right=none,,Переместить окно на один экран вправо
|
||||||
Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном
|
Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном
|
||||||
Window Pack Down=none,,Переместить окно вниз
|
Window Pack Down=none,,Переместить окно вниз
|
||||||
Window Pack Left=none,,Переместить окно влево
|
Window Pack Left=none,,Переместить окно влево
|
||||||
|
@ -212,54 +211,24 @@ playpausemedia=Media Play,Media Play,Начать/приостановить в
|
||||||
previousmedia=Media Previous,Media Previous,Перейти к предыдущей дорожке
|
previousmedia=Media Previous,Media Previous,Перейти к предыдущей дорожке
|
||||||
stopmedia=Media Stop,Media Stop,Остановить воспроизведение
|
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]
|
[org_kde_powerdevil]
|
||||||
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры
|
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры
|
||||||
Decrease Screen Brightness=Monitor Brightness Down,Monitor 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 Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Увеличить яркость подсветки клавиатуры
|
||||||
Increase Screen Brightness=Monitor Brightness Up,Monitor 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,Отключить питание
|
PowerDown=Power Down,Power Down,Отключить питание
|
||||||
PowerOff=Power Off,Power Off,Выключить
|
PowerOff=Power Off,Power Off,Выключить
|
||||||
Sleep=Sleep,Sleep,Перейти в ждущий режим
|
Sleep=Sleep,Sleep,Перейти в спящий режим
|
||||||
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры
|
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры
|
||||||
Turn Off Screen=none,none,Выключить монитор
|
Turn Off Screen=none,none,Выключить монитор
|
||||||
_k_friendly_name=Управление питанием
|
_k_friendly_name=Система управления питанием KDE
|
||||||
|
powerProfile=Battery\tMeta+B,Battery\tMeta+B,Переключить профиль энергопотребления
|
||||||
|
|
||||||
[plasmashell]
|
[plasmashell]
|
||||||
_k_friendly_name=Plasma
|
_k_friendly_name=plasmashell
|
||||||
activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач
|
activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач
|
||||||
activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач
|
activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач
|
||||||
activate task manager entry 2=Meta+2,Meta+2,Открыть 2-ю кнопку на панели задач
|
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,Перемещение фокуса ввода с клавиатуры между панелями
|
cycle-panels=Meta+Alt+P,Meta+Alt+P,Перемещение фокуса ввода с клавиатуры между панелями
|
||||||
cycleNextAction=none,,Следующая запись журнала
|
cycleNextAction=none,,Следующая запись журнала
|
||||||
cyclePrevAction=none,,Предыдущая запись журнала
|
cyclePrevAction=none,,Предыдущая запись журнала
|
||||||
edit_clipboard=none,,Редактирование буфера обмена…
|
edit_clipboard=none,none,Редактирование буфера обмена…
|
||||||
manage activities=Meta+Q,Meta+Q,Показать переключатель комнат
|
manage activities=Meta+Q,Meta+Q,Показать переключатель комнат
|
||||||
next activity=Meta+Tab,none,На одну комнату вперёд
|
next activity=Meta+A,none,На одну комнату вперёд
|
||||||
previous activity=Meta+Shift+Tab,none,На одну комнату назад
|
previous activity=Meta+Shift+A,none,На одну комнату назад
|
||||||
repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена
|
repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена
|
||||||
show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол
|
show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол
|
||||||
show-barcode=none,,Показать штрихкод…
|
show-barcode=none,,Показать штрихкод…
|
||||||
|
@ -296,11 +265,5 @@ switch to next activity=none,,Переключиться в следующую
|
||||||
switch to previous activity=none,,Переключиться в предыдущую комнату
|
switch to previous activity=none,,Переключиться в предыдущую комнату
|
||||||
toggle do not disturb=none,,Включение и отключение режима «Не беспокоить»
|
toggle do not disturb=none,,Включение и отключение режима «Не беспокоить»
|
||||||
|
|
||||||
[systemsettings.desktop]
|
[services][org.kde.spectacle.desktop]
|
||||||
_k_friendly_name=Параметры системы
|
RecordWindow=none
|
||||||
_launch=Tools,Tools,Параметры системы
|
|
||||||
kcm-kscreen=none,none,Настройка экранов
|
|
||||||
kcm-lookandfeel=none,none,Оформление рабочей среды
|
|
||||||
kcm-users=none,none,Пользователи
|
|
||||||
powerdevilprofilesconfig=none,none,Энергосбережение
|
|
||||||
screenlocker=none,none,Блокировка экрана
|
|
||||||
|
|
|
@ -1,25 +1,74 @@
|
||||||
[ButtonBehaviour]
|
[ButtonBehaviour]
|
||||||
AlwaysShowIconHighlightUsing=Background
|
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]
|
[Style]
|
||||||
ButtonGradient=true
|
ButtonGradient=true
|
||||||
MenuOpacity=80
|
MenuOpacity=80
|
||||||
|
|
||||||
[TitleBarOpacity]
|
[TitleBarOpacity]
|
||||||
|
ActiveTitleBarOpacity=75
|
||||||
ActiveTitlebarOpacity=75
|
ActiveTitlebarOpacity=75
|
||||||
|
InactiveTitleBarOpacity=75
|
||||||
InactiveTitlebarOpacity=75
|
InactiveTitlebarOpacity=75
|
||||||
|
|
||||||
[TitleBarSpacing]
|
[TitleBarSpacing]
|
||||||
|
TitleBarBottomMargin=3
|
||||||
|
TitleBarLeftMargin=3
|
||||||
|
TitleBarRightMargin=3
|
||||||
|
TitleBarTopMargin=3
|
||||||
|
TitleSidePadding=3
|
||||||
TitlebarBottomMargin=3
|
TitlebarBottomMargin=3
|
||||||
TitlebarLeftMargin=3
|
TitlebarLeftMargin=3
|
||||||
TitlebarRightMargin=3
|
TitlebarRightMargin=3
|
||||||
TitlebarTopMargin=3
|
TitlebarTopMargin=3
|
||||||
|
|
||||||
[Windeco]
|
[Windeco]
|
||||||
|
BoldButtonIcons=BoldIconsFine
|
||||||
ButtonIconStyle=StyleSystemIconTheme
|
ButtonIconStyle=StyleSystemIconTheme
|
||||||
ButtonShape=ShapeSmallCircle
|
ButtonShape=ShapeSmallCircle
|
||||||
ColorizeThinWindowOutlineWithButton=false
|
ColorizeThinWindowOutlineWithButton=false
|
||||||
CornerRadius=5
|
CornerRadius=5
|
||||||
IconSize=IconMedium
|
|
||||||
RoundBottomCornersWhenNoBorders=true
|
RoundBottomCornersWhenNoBorders=true
|
||||||
SystemIconSize=SystemIcon20
|
SystemIconSize=SystemIcon20
|
||||||
|
|
||||||
|
[WindowOutlineStyle]
|
||||||
|
LockThinWindowOutlineStyleActiveInactive=true
|
||||||
|
ThinWindowOutlineStyleActive=WindowOutlineContrast
|
||||||
|
ThinWindowOutlineStyleInactive=WindowOutlineContrast
|
||||||
|
WindowOutlineAccentWithContrastOpacityInactive=25
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -26,7 +26,6 @@ HDMI-0=HDMI-0
|
||||||
HDMI-1=HDMI-1
|
HDMI-1=HDMI-1
|
||||||
LVDS=LVDS
|
LVDS=LVDS
|
||||||
RestorePositionForNextInstance=false
|
RestorePositionForNextInstance=false
|
||||||
State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAZABAAAD+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABHwEAAAMAAAO4AAABoAAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAATn/////AAAAAAAAAAA=
|
|
||||||
ToolBarsMovable=Disabled
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
[UiSettings]
|
[UiSettings]
|
||||||
|
|
|
@ -11,6 +11,8 @@ Rows=2
|
||||||
|
|
||||||
[NightColor]
|
[NightColor]
|
||||||
Active=true
|
Active=true
|
||||||
|
LatitudeAuto=56.84
|
||||||
|
LongitudeAuto=60.65
|
||||||
|
|
||||||
[Plugins]
|
[Plugins]
|
||||||
blurEnabled=true
|
blurEnabled=true
|
||||||
|
@ -43,6 +45,12 @@ tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"wi
|
||||||
[Tiling][b2284830-89aa-5fb4-ae47-5cc8afa4d682]
|
[Tiling][b2284830-89aa-5fb4-ae47-5cc8afa4d682]
|
||||||
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
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]
|
[Tiling][e460f24c-0802-5ae0-b5a4-3e2eda27ed36]
|
||||||
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
@ -57,5 +65,3 @@ BorderSize=Normal
|
||||||
BorderSizeAuto=false
|
BorderSizeAuto=false
|
||||||
ButtonsOnLeft=
|
ButtonsOnLeft=
|
||||||
ButtonsOnRight=IAX
|
ButtonsOnRight=IAX
|
||||||
library=org.kde.klassy
|
|
||||||
theme=Klassy
|
|
||||||
|
|
|
@ -85,10 +85,11 @@ editor_stop_format_chars=-+*\\,.;:&>
|
||||||
mcview_eof=
|
mcview_eof=
|
||||||
skin=modarcon16
|
skin=modarcon16
|
||||||
filepos_max_saved_entries=1024
|
filepos_max_saved_entries=1024
|
||||||
|
shell_directory_timeout=900
|
||||||
|
|
||||||
[Layout]
|
[Layout]
|
||||||
output_lines=0
|
output_lines=0
|
||||||
left_panel_size=75
|
left_panel_size=118
|
||||||
top_panel_size=0
|
top_panel_size=0
|
||||||
message_visible=true
|
message_visible=true
|
||||||
keybar_visible=true
|
keybar_visible=true
|
||||||
|
@ -142,7 +143,7 @@ select_flags=6
|
||||||
simple_swap=false
|
simple_swap=false
|
||||||
|
|
||||||
[Panelize]
|
[Panelize]
|
||||||
Изменённые файлы под контролем git=git ls-files --modified
|
|
||||||
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print
|
|
||||||
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print
|
|
||||||
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print
|
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print
|
||||||
|
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print
|
||||||
|
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print
|
||||||
|
Изменённые файлы под контролем git=git ls-files --modified
|
||||||
|
|
|
@ -12,6 +12,9 @@ user_mini_status=true
|
||||||
list_format=user
|
list_format=user
|
||||||
filter_flags=7
|
filter_flags=7
|
||||||
list_format=user
|
list_format=user
|
||||||
|
user_status1=half type name | size | perm
|
||||||
|
user_status2=half type name | size | perm
|
||||||
|
user_status3=half type name | size | perm
|
||||||
|
|
||||||
[New Right Panel]
|
[New Right Panel]
|
||||||
display=listing
|
display=listing
|
||||||
|
@ -27,7 +30,10 @@ user_mini_status=true
|
||||||
list_format=user
|
list_format=user
|
||||||
filter_flags=7
|
filter_flags=7
|
||||||
list_format=user
|
list_format=user
|
||||||
|
user_status1=half type name | size | perm
|
||||||
|
user_status2=half type name | size | perm
|
||||||
|
user_status3=half type name | size | perm
|
||||||
|
|
||||||
[Dirs]
|
[Dirs]
|
||||||
current_is_left=true
|
current_is_left=true
|
||||||
other_dir=/home/liveuser
|
other_dir=/data/github/active/Melawy/Melawy-Dev/MELAWY/Melawy/melawy-skel-liveuser/liveuser/.config/autostart
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
[ActionPlugins][0]
|
[ActionPlugins][0]
|
||||||
MiddleButton;NoModifier=org.kde.paste
|
MiddleButton;NoModifier=org.kde.paste
|
||||||
RightButton;NoModifier=org.kde.contextmenu
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
wheel:Vertical;NoModifier=org.kde.switchdesktop
|
|
||||||
|
|
||||||
[ActionPlugins][1]
|
[ActionPlugins][1]
|
||||||
RightButton;NoModifier=org.kde.contextmenu
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
[Containments][162]
|
[Containments][292]
|
||||||
ItemGeometries-1920x1080=
|
ItemGeometries-1920x1080=
|
||||||
ItemGeometriesHorizontal=
|
ItemGeometriesHorizontal=
|
||||||
activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
|
activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
|
||||||
|
@ -17,7 +16,7 @@ location=0
|
||||||
plugin=org.kde.plasma.folder
|
plugin=org.kde.plasma.folder
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][163]
|
[Containments][293]
|
||||||
activityId=
|
activityId=
|
||||||
formfactor=2
|
formfactor=2
|
||||||
immutability=1
|
immutability=1
|
||||||
|
@ -26,146 +25,174 @@ location=4
|
||||||
plugin=org.kde.panel
|
plugin=org.kde.panel
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][163][Applets][164]
|
[Containments][293][Applets][294]
|
||||||
immutability=1
|
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
|
immutability=1
|
||||||
plugin=org.kde.milou
|
plugin=org.kde.plasma.pager
|
||||||
|
|
||||||
[Containments][163][Applets][166]
|
[Containments][293][Applets][296]
|
||||||
immutability=1
|
|
||||||
plugin=com.github.zren.presentwindows
|
|
||||||
|
|
||||||
[Containments][163][Applets][166][Configuration][General]
|
|
||||||
icon=multitasking-view
|
|
||||||
|
|
||||||
[Containments][163][Applets][167]
|
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.icontasks
|
plugin=org.kde.plasma.icontasks
|
||||||
|
|
||||||
[Containments][163][Applets][167][Configuration]
|
[Containments][293][Applets][296][Configuration]
|
||||||
launchers=
|
launchers=
|
||||||
|
|
||||||
[Containments][163][Applets][167][Configuration][General]
|
[Containments][293][Applets][296][Configuration][General]
|
||||||
iconSpacing=0
|
iconSpacing=0
|
||||||
indicateAudioStreams=true
|
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
|
maxStripes=1
|
||||||
|
|
||||||
[Containments][163][Applets][168]
|
[Containments][293][Applets][297]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.panelspacer
|
plugin=org.kde.plasma.panelspacer
|
||||||
|
|
||||||
[Containments][163][Applets][169]
|
[Containments][293][Applets][298]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.systemtray
|
plugin=org.kde.plasma.systemtray
|
||||||
|
|
||||||
[Containments][163][Applets][169][Configuration]
|
[Containments][293][Applets][298][Configuration]
|
||||||
PreloadWeight=55
|
SystrayContainmentId=299
|
||||||
SystrayContainmentId=170
|
|
||||||
|
|
||||||
[Containments][163][Applets][182]
|
[Containments][293][Applets][311]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.digitalclock
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
[Containments][163][Applets][182][Configuration][Appearance]
|
[Containments][293][Applets][311][Configuration][Appearance]
|
||||||
autoFontAndSize=false
|
autoFontAndSize=true
|
||||||
fontSize=11
|
fontSize=12
|
||||||
showSeconds=true
|
showSeconds=true
|
||||||
|
|
||||||
[Containments][163][Applets][183]
|
[Containments][293][Applets][312]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.notifications
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
[Containments][163][Applets][184]
|
[Containments][293][Applets][313]
|
||||||
immutability=1
|
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
|
edgeColor=#66888888
|
||||||
size=5
|
hoveredColor=#66777777
|
||||||
|
pressedColor=#66555555
|
||||||
|
size=7
|
||||||
|
|
||||||
[Containments][163][General]
|
[Containments][293][General]
|
||||||
AppletOrder=164;165;166;167;168;169;182;183;184
|
AppletOrder=294;295;296;297;298;311;312;313
|
||||||
|
|
||||||
[Containments][170]
|
[Containments][299]
|
||||||
activityId=
|
activityId=
|
||||||
formfactor=2
|
formfactor=2
|
||||||
immutability=1
|
immutability=1
|
||||||
lastScreen=0
|
lastScreen=-1
|
||||||
location=4
|
location=4
|
||||||
plugin=org.kde.plasma.private.systemtray
|
plugin=org.kde.plasma.private.systemtray
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][170][Applets][171]
|
[Containments][299][Applets][300]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.kdeconnect
|
plugin=org.kde.kdeconnect
|
||||||
|
|
||||||
[Containments][170][Applets][172]
|
[Containments][299][Applets][301]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.clipboard
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
[Containments][170][Applets][173]
|
[Containments][299][Applets][302]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.devicenotifier
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
[Containments][170][Applets][174]
|
[Containments][299][Applets][303]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.manage-inputmethod
|
plugin=org.kde.plasma.manage-inputmethod
|
||||||
|
|
||||||
[Containments][170][Applets][175]
|
[Containments][299][Applets][304][Configuration]
|
||||||
immutability=1
|
PreloadWeight=42
|
||||||
plugin=org.kde.plasma.notifications
|
|
||||||
|
|
||||||
[Containments][170][Applets][176]
|
[Containments][299][Applets][305]
|
||||||
immutability=1
|
|
||||||
plugin=org.kde.plasma.keyboardindicator
|
|
||||||
|
|
||||||
[Containments][170][Applets][177]
|
|
||||||
immutability=1
|
|
||||||
plugin=org.kde.kscreen
|
|
||||||
|
|
||||||
[Containments][170][Applets][178]
|
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.keyboardlayout
|
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
|
immutability=1
|
||||||
plugin=org.kde.plasma.volume
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
[Containments][170][Applets][179][Configuration][General]
|
[Containments][299][Applets][308][Configuration][General]
|
||||||
migrated=true
|
migrated=true
|
||||||
|
|
||||||
[Containments][170][Applets][180]
|
[Containments][299][Applets][309]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.vault
|
plugin=org.kde.plasma.vault
|
||||||
|
|
||||||
[Containments][170][Applets][181]
|
[Containments][299][Applets][310]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=com.github.Melawy.ArchUpdate
|
plugin=org.kde.plasma.cameraindicator
|
||||||
|
|
||||||
[Containments][170][Applets][185]
|
[Containments][299][Applets][314]
|
||||||
immutability=1
|
|
||||||
plugin=org.kde.plasma.nightcolorcontrol
|
|
||||||
|
|
||||||
[Containments][170][Applets][186]
|
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.battery
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
[Containments][170][Applets][187]
|
[Containments][299][Applets][315]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.networkmanagement
|
plugin=org.kde.plasma.brightness
|
||||||
|
|
||||||
[Containments][170][Applets][188]
|
[Containments][299][Applets][316]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.bluetooth
|
plugin=org.kde.plasma.bluetooth
|
||||||
|
|
||||||
[Containments][170][General]
|
[Containments][299][Applets][317]
|
||||||
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
|
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
|
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]
|
[ScreenMapping]
|
||||||
itemsOnDisabledScreens=
|
itemsOnDisabledScreens=
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
[KPropertiesDialog]
|
[KPropertiesDialog]
|
||||||
1920x1080 screen: Width=874
|
1920x1080 screen: Width=874
|
||||||
|
|
||||||
[PlasmaTransientsConfig]
|
|
||||||
PreloadWeight=0
|
|
||||||
|
|
||||||
[PlasmaViews][Panel 109]
|
[PlasmaViews][Panel 109]
|
||||||
alignment=132
|
alignment=132
|
||||||
|
floating=0
|
||||||
|
|
||||||
[PlasmaViews][Panel 109][Defaults]
|
[PlasmaViews][Panel 109][Defaults]
|
||||||
offset=0
|
offset=0
|
||||||
|
@ -13,6 +11,7 @@ thickness=36
|
||||||
|
|
||||||
[PlasmaViews][Panel 136]
|
[PlasmaViews][Panel 136]
|
||||||
alignment=132
|
alignment=132
|
||||||
|
floating=0
|
||||||
|
|
||||||
[PlasmaViews][Panel 136][Defaults]
|
[PlasmaViews][Panel 136][Defaults]
|
||||||
offset=0
|
offset=0
|
||||||
|
@ -20,6 +19,7 @@ thickness=36
|
||||||
|
|
||||||
[PlasmaViews][Panel 163]
|
[PlasmaViews][Panel 163]
|
||||||
alignment=132
|
alignment=132
|
||||||
|
floating=1
|
||||||
|
|
||||||
[PlasmaViews][Panel 163][Defaults]
|
[PlasmaViews][Panel 163][Defaults]
|
||||||
offset=0
|
offset=0
|
||||||
|
@ -40,18 +40,53 @@ floating=1
|
||||||
[PlasmaViews][Panel 2][Defaults]
|
[PlasmaViews][Panel 2][Defaults]
|
||||||
thickness=36
|
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]
|
[PlasmaViews][Panel 30][Defaults]
|
||||||
thickness=44
|
thickness=44
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 57]
|
||||||
|
floating=0
|
||||||
|
|
||||||
[PlasmaViews][Panel 57][Defaults]
|
[PlasmaViews][Panel 57][Defaults]
|
||||||
thickness=44
|
thickness=44
|
||||||
|
|
||||||
[PlasmaViews][Panel 82]
|
[PlasmaViews][Panel 82]
|
||||||
alignment=132
|
alignment=132
|
||||||
|
floating=0
|
||||||
|
|
||||||
[PlasmaViews][Panel 82][Defaults]
|
[PlasmaViews][Panel 82][Defaults]
|
||||||
offset=0
|
offset=0
|
||||||
thickness=36
|
thickness=36
|
||||||
|
|
||||||
[Updates]
|
[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
|
||||||
|
|
|
@ -1,2 +1,6 @@
|
||||||
|
[AC][SuspendAndShutdown]
|
||||||
|
AutoSuspendIdleTimeoutSec=1800
|
||||||
|
SleepMode=3
|
||||||
|
|
||||||
[BatteryManagement]
|
[BatteryManagement]
|
||||||
BatteryCriticalAction=1
|
BatteryCriticalAction=1
|
||||||
|
|
|
@ -1,12 +1,23 @@
|
||||||
[AC]
|
[AC]
|
||||||
icon=battery-charging
|
icon=battery-charging
|
||||||
|
|
||||||
|
[AC][DPMSControl]
|
||||||
|
idleTime=600
|
||||||
|
|
||||||
|
[AC][DimDisplay]
|
||||||
|
idleTime=300000
|
||||||
|
|
||||||
[AC][HandleButtonEvents]
|
[AC][HandleButtonEvents]
|
||||||
lidAction=1
|
lidAction=1
|
||||||
powerButtonAction=16
|
powerButtonAction=16
|
||||||
powerDownAction=16
|
powerDownAction=16
|
||||||
triggerLidActionWhenExternalMonitorPresent=false
|
triggerLidActionWhenExternalMonitorPresent=false
|
||||||
|
|
||||||
|
[AC][SuspendSession]
|
||||||
|
idleTime=600000
|
||||||
|
suspendThenHibernate=false
|
||||||
|
suspendType=32
|
||||||
|
|
||||||
[Activities][357d5349-fd6a-4e36-8d43-33270dc1e4c5]
|
[Activities][357d5349-fd6a-4e36-8d43-33270dc1e4c5]
|
||||||
mode=None
|
mode=None
|
||||||
|
|
||||||
|
@ -54,3 +65,7 @@ triggerLidActionWhenExternalMonitorPresent=false
|
||||||
idleTime=300000
|
idleTime=300000
|
||||||
suspendThenHibernate=false
|
suspendThenHibernate=false
|
||||||
suspendType=1
|
suspendType=1
|
||||||
|
|
||||||
|
[Migration]
|
||||||
|
MigratedActivitiesToPlasma6=powerdevilrc
|
||||||
|
MigratedProfilesToPlasma6=powerdevilrc
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
|
Net/SoundThemeName "ocean"
|
||||||
Net/ThemeName "Melawy-round-Dark-compact"
|
Net/ThemeName "Melawy-round-Dark-compact"
|
||||||
Gdk/UnscaledDPI 98304
|
Gdk/UnscaledDPI 98304
|
||||||
Gdk/WindowScalingFactor 1
|
Gdk/WindowScalingFactor 1
|
||||||
Gtk/EnableAnimations 1
|
Gtk/EnableAnimations 1
|
||||||
Gtk/DecorationLayout ":minimize,maximize,close"
|
Gtk/DecorationLayout ":minimize,maximize,close"
|
||||||
Gtk/PrimaryButtonWarpsSlider 0
|
Gtk/PrimaryButtonWarpsSlider 1
|
||||||
Gtk/ToolbarStyle 3
|
Gtk/ToolbarStyle 3
|
||||||
Gtk/MenuImages 1
|
Gtk/MenuImages 1
|
||||||
Gtk/ButtonImages 1
|
Gtk/ButtonImages 1
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
gtk-sound-theme-name="ocean"
|
||||||
gtk-theme-name="Melawy-round-Dark-compact"
|
gtk-theme-name="Melawy-round-Dark-compact"
|
||||||
gtk-enable-animations=1
|
gtk-enable-animations=1
|
||||||
gtk-primary-button-warps-slider=0
|
gtk-primary-button-warps-slider=1
|
||||||
gtk-toolbar-style=3
|
gtk-toolbar-style=3
|
||||||
gtk-menu-images=1
|
gtk-menu-images=1
|
||||||
gtk-button-images=1
|
gtk-button-images=1
|
||||||
|
|
|
@ -7,14 +7,12 @@
|
||||||
1366x768 screen: Width=1366
|
1366x768 screen: Width=1366
|
||||||
1366x768 screen: XPosition=0
|
1366x768 screen: XPosition=0
|
||||||
1366x768 screen: YPosition=30
|
1366x768 screen: YPosition=30
|
||||||
1920x1080 screen: Height=654
|
1920x1080 screen: Height=650
|
||||||
1920x1080 screen: Width=1272
|
1920x1080 screen: Width=1272
|
||||||
1920x1080 screen: Window-Maximized=true
|
1920x1080 screen: XPosition=324
|
||||||
1920x1080 screen: XPosition=293
|
1920x1080 screen: YPosition=212
|
||||||
1920x1080 screen: YPosition=153
|
|
||||||
:0.0=:0.0
|
:0.0=:0.0
|
||||||
HDMI-0=HDMI-0
|
HDMI-0=HDMI-0
|
||||||
HDMI-1=HDMI-1
|
HDMI-1=HDMI-1
|
||||||
LVDS=LVDS
|
LVDS=LVDS
|
||||||
RestorePositionForNextInstance=false
|
State=AAAA/wAAAAD9AAAAAwAAAAAAAADDAAACXPwCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAA/////wAAAAAA////+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAuAAACXAAAAFMA////AAAAAQAAAOoAAAJc/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAQAAAC4AAAJcAAABBQD///8AAAADAAAHgAAAAUj8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAHgAAAAAAA////AAADSQAAAlwAAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA=
|
||||||
State=AAAA/wAAAAD9AAAAAwAAAAAAAADDAAADvvwCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAA/////wAAAAoBAAAD+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAuAAADvgAAAGcBAAADAAAAAQAAAOoAAAO+/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAQAAAC4AAAO+AAABGQEAAAMAAAADAAAHgAAAAUj8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAHgAAAAJEBAAADAAAF0QAAA74AAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA=
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[Dolphin]
|
[Dolphin]
|
||||||
HeaderColumnWidths=428,74,83,126,85,77,72
|
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
|
Version=4
|
||||||
ViewMode=1
|
ViewMode=1
|
||||||
VisibleRoles=CustomizedDetails,Details_text,Details_type,Details_size,Details_modificationtime,Details_permissions,Details_owner,Details_group
|
VisibleRoles=CustomizedDetails,Details_text,Details_type,Details_size,Details_modificationtime,Details_permissions,Details_owner,Details_group
|
||||||
|
|
Loading…
Reference in New Issue