Update
This commit is contained in:
parent
6060735836
commit
dab3b0c68e
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
git add . && git commit -m "Update" && git push
|
git add . && git commit -m "Update"
|
||||||
|
git push
|
||||||
|
|
||||||
echo "Ready"
|
echo "Ready"
|
||||||
|
|
|
@ -6,6 +6,4 @@ etc skel 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
skel/.bashrc
162
skel/.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"
|
||||||
|
|
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,2 @@
|
||||||
# created by KDE Plasma, чт нояб. 30 22:19:13 2023
|
# KDE Plasma, Mon Oct 21 13:06:36 2024
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# created by KDE Plasma, чт нояб. 30 22:19:13 2023
|
# KDE Plasma, Mon Oct 21 13:06:36 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=1729190689
|
||||||
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=1729020730
|
||||||
|
|
||||||
[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=1728889316
|
||||||
mtime=1699371607
|
mtime=1728522418
|
||||||
|
|
||||||
[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=1729190690
|
||||||
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,kwin-6.1-remove-gridview-expose-shortcuts
|
||||||
mtime=1698157131
|
mtime=1729110311
|
||||||
|
|
||||||
[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=1729190696
|
||||||
|
done=kwin-6.0-remove-breeze-tabbox-default,migrate-calendar-plugins,kwin-6.1-remove-gridview-expose-shortcuts
|
||||||
|
mtime=1729110672
|
||||||
|
|
||||||
[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=1729190696
|
||||||
|
done=migrate-calendar-plugins,plasma6.0-remove-dpi-settings
|
||||||
|
mtime=1729110672
|
||||||
|
|
||||||
|
[plasma6.0-remove-old-shortcuts.upd]
|
||||||
|
ctime=1729190696
|
||||||
|
done=plasma6.0-remove-dpi-settings,plasma6.0-remove-old-shortcuts
|
||||||
|
mtime=1729110672
|
||||||
|
|
||||||
[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=1729190696
|
||||||
|
done=plasma6.0-remove-old-shortcuts,plasmashell-6.0-keep-custom-position-of-panels
|
||||||
|
mtime=1729110672
|
||||||
|
|
||||||
|
[plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd]
|
||||||
|
ctime=1729190696
|
||||||
|
done=plasmashell-6.0-keep-custom-position-of-panels,plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels
|
||||||
|
mtime=1729110672
|
||||||
|
|
||||||
|
[spectacle.upd]
|
||||||
|
ctime=1728889350
|
||||||
|
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,24.05.2-change_placeholder_format
|
||||||
|
mtime=1728517734
|
||||||
|
|
||||||
[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, светлый вариант
|
||||||
|
@ -173,6 +172,9 @@ Sort reversed=false
|
||||||
Speedbar Width=202
|
Speedbar Width=202
|
||||||
View Style=Detail
|
View Style=Detail
|
||||||
|
|
||||||
|
[KShortcutsDialog Settings]
|
||||||
|
Dialog Size=600,480
|
||||||
|
|
||||||
[PreviewSettings]
|
[PreviewSettings]
|
||||||
MaximumRemoteSize=0
|
MaximumRemoteSize=0
|
||||||
|
|
||||||
|
|
|
@ -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,40 +18,44 @@ 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,Поиск
|
||||||
|
|
||||||
[kmix]
|
[kmix]
|
||||||
_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,,Завершить сеанс без подтверждения
|
||||||
|
LogOut=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,Активировать окно\\, требующее внимания
|
||||||
|
Cube=Meta+C,Meta+C,Виртуальный куб
|
||||||
|
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,Переключить планшет к следующему выходу
|
||||||
|
@ -63,7 +68,6 @@ MoveZoomUp=none,none,Переместить увеличенную област
|
||||||
Overview=Meta+W,Meta+W,Включить или отключить режим обзора
|
Overview=Meta+W,Meta+W,Включить или отключить режим обзора
|
||||||
Setup Window Shortcut=none,,Задать комбинацию клавиш для переключения в это окно
|
Setup Window Shortcut=none,,Задать комбинацию клавиш для переключения в это окно
|
||||||
Show Desktop=Meta+D,Meta+D,Взглянуть на рабочий стол
|
Show Desktop=Meta+D,Meta+D,Взглянуть на рабочий стол
|
||||||
ShowDesktopGrid=Meta+F8,Meta+F8,Показать все рабочие столы
|
|
||||||
Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Приостановить композитное расширение
|
Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Приостановить композитное расширение
|
||||||
Switch One Desktop Down=none,Meta+Ctrl+Down,Переключиться на один рабочий стол вниз
|
Switch One Desktop Down=none,Meta+Ctrl+Down,Переключиться на один рабочий стол вниз
|
||||||
Switch One Desktop Up=none,Meta+Ctrl+Up,Переключиться на один рабочий стол вверх
|
Switch One Desktop Up=none,Meta+Ctrl+Up,Переключиться на один рабочий стол вверх
|
||||||
|
@ -109,14 +113,10 @@ Switch to Screen Above=none,,Переключиться на экран выше
|
||||||
Switch to Screen Below=none,,Переключиться на экран ниже
|
Switch to Screen Below=none,,Переключиться на экран ниже
|
||||||
Switch to Screen to the Left=none,,Переключиться на экран слева
|
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 +142,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 +212,25 @@ 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=Управление питанием
|
||||||
|
powerProfile=Battery\tMeta+B,Battery\tMeta+B,Переключить профиль энергопотребления
|
||||||
|
|
||||||
[plasmashell]
|
[plasmashell]
|
||||||
_k_friendly_name=Plasma
|
_k_friendly_name=plasmashell
|
||||||
|
activate application launcher=Meta,Meta\tAlt+F1,Вызвать меню запуска приложений
|
||||||
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-ю кнопку на панели задач
|
||||||
|
@ -277,16 +248,17 @@ activate widget 28=none,none,Сделать виджет «Показать ра
|
||||||
activate widget 31=none,none,Сделать виджет «Меню запуска приложений» активным
|
activate widget 31=none,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
activate widget 314=none,none,Сделать виджет «Menu11» активным
|
activate widget 314=none,none,Сделать виджет «Menu11» активным
|
||||||
activate widget 319=none,none,Сделать виджет «Показать рабочий стол» активным
|
activate widget 319=none,none,Сделать виджет «Показать рабочий стол» активным
|
||||||
|
activate widget 344=none,none,Сделать виджет «Menu 11» активным
|
||||||
activate widget 58=none,none,Сделать виджет «Меню запуска приложений» активным
|
activate widget 58=none,none,Сделать виджет «Меню запуска приложений» активным
|
||||||
clear-history=none,,Очистить журнал буфера обмена
|
clear-history=none,,Очистить журнал буфера обмена
|
||||||
clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Всплывающее меню автоматических действий
|
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 +268,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,73 @@
|
||||||
[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]
|
||||||
|
ButtonBackgroundColorsActive=TitleBarText
|
||||||
|
ButtonBackgroundColorsInactive=TitleBarText
|
||||||
|
ButtonBackgroundOpacityActive=16
|
||||||
|
ButtonBackgroundOpacityInactive=12
|
||||||
|
CloseButtonIconColorActive=AsSelected
|
||||||
|
CloseButtonIconColorInactive=AsSelected
|
||||||
|
LockButtonColorsActiveInactive=false
|
||||||
|
OnPoorIconContrastActive=Nothing
|
||||||
|
OnPoorIconContrastInactive=Nothing
|
||||||
|
|
||||||
|
[ButtonSizing]
|
||||||
|
ButtonSpacingLeft=5
|
||||||
|
ScaleBackgroundPercent=150
|
||||||
|
|
||||||
|
[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
|
||||||
|
OpaqueMaximizedTitleBars=false
|
||||||
|
|
||||||
[TitleBarSpacing]
|
[TitleBarSpacing]
|
||||||
|
PercentMaximizedTopBottomMargins=70
|
||||||
|
TitleBarBottomMargin=3
|
||||||
|
TitleBarLeftMargin=4
|
||||||
|
TitleBarRightMargin=4
|
||||||
|
TitleBarTopMargin=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
|
|
||||||
|
[WindowOutlineStyle]
|
||||||
|
LockThinWindowOutlineStyleActiveInactive=true
|
||||||
|
ThinWindowOutlineStyleActive=WindowOutlineContrast
|
||||||
|
ThinWindowOutlineStyleInactive=WindowOutlineContrast
|
||||||
|
|
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]
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
[$Version]
|
[$Version]
|
||||||
update_info=kscreenlocker.upd:0.1-autolock
|
update_info=kscreenlocker.upd:0.1-autolock
|
||||||
|
|
||||||
|
[Daemon]
|
||||||
|
Autolock=false
|
||||||
|
LockGrace=300
|
||||||
|
|
||||||
[Greeter][Wallpaper][org.kde.image][General]
|
[Greeter][Wallpaper][org.kde.image][General]
|
||||||
Image=/usr/share/wallpapers/Melawy Nier A2/
|
Image=/usr/share/wallpapers/Melawy Nier A2/
|
||||||
PreviewImage=/usr/share/wallpapers/Melawy Nier A2/
|
PreviewImage=/usr/share/wallpapers/Melawy Nier A2/
|
||||||
|
|
|
@ -11,10 +11,13 @@ Rows=2
|
||||||
|
|
||||||
[NightColor]
|
[NightColor]
|
||||||
Active=true
|
Active=true
|
||||||
|
LatitudeAuto=56.84
|
||||||
|
LongitudeAuto=60.65
|
||||||
|
|
||||||
[Plugins]
|
[Plugins]
|
||||||
blurEnabled=true
|
blurEnabled=true
|
||||||
contrastEnabled=true
|
contrastEnabled=true
|
||||||
|
cubeEnabled=true
|
||||||
desktopchangeosdEnabled=true
|
desktopchangeosdEnabled=true
|
||||||
kwin4_effect_cornersshaderEnabled=true
|
kwin4_effect_cornersshaderEnabled=true
|
||||||
kwin4_effect_fadedesktopEnabled=true
|
kwin4_effect_fadedesktopEnabled=true
|
||||||
|
@ -31,6 +34,9 @@ tiles={"layoutDirection":"horizontal","tiles":[{"width":0.6869791666666669},{"wi
|
||||||
[Tiling][0e2d34a7-0fc8-514b-a617-f9f5e7b1b3cc]
|
[Tiling][0e2d34a7-0fc8-514b-a617-f9f5e7b1b3cc]
|
||||||
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][41ed61f1-df88-5f72-9feb-b45774232926]
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
[Tiling][58ca410b-ce44-58d6-82b9-fefe44aba0e3]
|
[Tiling][58ca410b-ce44-58d6-82b9-fefe44aba0e3]
|
||||||
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}]}
|
||||||
|
|
||||||
|
@ -43,6 +49,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}]}
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
[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][346]
|
||||||
ItemGeometries-1920x1080=
|
ItemGeometries-1366x768=
|
||||||
ItemGeometriesHorizontal=
|
ItemGeometriesHorizontal=
|
||||||
activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
|
activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
|
||||||
formfactor=0
|
formfactor=0
|
||||||
|
@ -17,7 +16,18 @@ location=0
|
||||||
plugin=org.kde.plasma.folder
|
plugin=org.kde.plasma.folder
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][163]
|
[Containments][347]
|
||||||
|
ItemGeometries-1920x1080=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=1
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.folder
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][348]
|
||||||
activityId=
|
activityId=
|
||||||
formfactor=2
|
formfactor=2
|
||||||
immutability=1
|
immutability=1
|
||||||
|
@ -26,146 +36,176 @@ location=4
|
||||||
plugin=org.kde.panel
|
plugin=org.kde.panel
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][163][Applets][164]
|
[Containments][348][Applets][349]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=com.github.adhec.Menu11
|
plugin=com.github.adhec.Menu11
|
||||||
|
|
||||||
[Containments][163][Applets][165]
|
[Containments][348][Applets][349][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,firefox-developer-edition.desktop,firefox.desktop,brave-browser.desktop,google-chrome.desktop
|
||||||
|
favoritesPortedToKAstats=true
|
||||||
|
floating=true
|
||||||
|
fullscreen=true
|
||||||
|
groupLabelAlignment=center
|
||||||
|
icon=start-here-kde
|
||||||
|
menuItemHeight=24
|
||||||
|
numRecentApps=10
|
||||||
|
popupHeight=700
|
||||||
|
searchFieldFollowsTheme=true
|
||||||
|
searchFieldHeight=36
|
||||||
|
searchResultsMerged=false
|
||||||
|
showActionButtonCaptions=false
|
||||||
|
sidebarButtonSize=36
|
||||||
|
sidebarFollowsTheme=true
|
||||||
|
sidebarIconSize=24
|
||||||
|
systemFavorites=
|
||||||
|
tileLabelAlignment=center
|
||||||
|
|
||||||
|
[Containments][348][Applets][350]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.milou
|
plugin=org.kde.plasma.pager
|
||||||
|
|
||||||
[Containments][163][Applets][166]
|
[Containments][348][Applets][351]
|
||||||
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][348][Applets][351][Configuration]
|
||||||
launchers=
|
launchers=
|
||||||
|
|
||||||
[Containments][163][Applets][167][Configuration][General]
|
[Containments][348][Applets][351][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:firefox-developer-edition.desktop,applications:firefox.desktop,applications:brave-browser.desktop,applications:google-chrome.desktop
|
||||||
maxStripes=1
|
maxStripes=1
|
||||||
|
|
||||||
[Containments][163][Applets][168]
|
[Containments][348][Applets][352]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.panelspacer
|
plugin=org.kde.plasma.panelspacer
|
||||||
|
|
||||||
[Containments][163][Applets][169]
|
[Containments][348][Applets][353]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.systemtray
|
plugin=org.kde.plasma.systemtray
|
||||||
|
|
||||||
[Containments][163][Applets][169][Configuration]
|
[Containments][348][Applets][353][Configuration]
|
||||||
PreloadWeight=55
|
PreloadWeight=55
|
||||||
SystrayContainmentId=170
|
SystrayContainmentId=354
|
||||||
|
|
||||||
[Containments][163][Applets][182]
|
[Containments][348][Applets][366]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.digitalclock
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
[Containments][163][Applets][182][Configuration][Appearance]
|
[Containments][348][Applets][366][Configuration][Appearance]
|
||||||
autoFontAndSize=false
|
autoFontAndSize=true
|
||||||
fontSize=11
|
fontSize=12
|
||||||
showSeconds=true
|
showSeconds=Always
|
||||||
|
|
||||||
[Containments][163][Applets][183]
|
[Containments][348][Applets][366][Configuration][ConfigDialog]
|
||||||
|
DialogHeight=540
|
||||||
|
DialogWidth=720
|
||||||
|
|
||||||
|
[Containments][348][Applets][367]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.notifications
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
[Containments][163][Applets][184]
|
[Containments][348][Applets][368]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=com.github.zren.win7showdesktop
|
plugin=org.kde.plasma.win7showdesktop
|
||||||
|
|
||||||
[Containments][163][Applets][184][Configuration][General]
|
[Containments][348][Applets][368][Configuration][General]
|
||||||
edgeColor=#66888888
|
edgeColor=#66888888
|
||||||
size=5
|
hoveredColor=#66777777
|
||||||
|
pressedColor=#66555555
|
||||||
|
size=7
|
||||||
|
|
||||||
[Containments][163][General]
|
[Containments][348][General]
|
||||||
AppletOrder=164;165;166;167;168;169;182;183;184
|
AppletOrder=349;350;351;352;353;366;367;368
|
||||||
|
|
||||||
[Containments][170]
|
[Containments][354]
|
||||||
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
|
||||||
|
popupHeight=432
|
||||||
|
popupWidth=432
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][170][Applets][171]
|
[Containments][354][Applets][355]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.kdeconnect
|
plugin=org.kde.kdeconnect
|
||||||
|
|
||||||
[Containments][170][Applets][172]
|
[Containments][354][Applets][356]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.clipboard
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
[Containments][170][Applets][173]
|
[Containments][354][Applets][357]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.devicenotifier
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
[Containments][170][Applets][174]
|
[Containments][354][Applets][358]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.manage-inputmethod
|
plugin=org.kde.plasma.manage-inputmethod
|
||||||
|
|
||||||
[Containments][170][Applets][175]
|
[Containments][354][Applets][359][Configuration]
|
||||||
immutability=1
|
PreloadWeight=42
|
||||||
plugin=org.kde.plasma.notifications
|
|
||||||
|
|
||||||
[Containments][170][Applets][176]
|
[Containments][354][Applets][360]
|
||||||
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][354][Applets][361]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][354][Applets][362]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kscreen
|
||||||
|
|
||||||
|
[Containments][354][Applets][363]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.volume
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
[Containments][170][Applets][179][Configuration][General]
|
[Containments][354][Applets][363][Configuration][General]
|
||||||
migrated=true
|
migrated=true
|
||||||
|
|
||||||
[Containments][170][Applets][180]
|
[Containments][354][Applets][364]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.vault
|
plugin=org.kde.plasma.vault
|
||||||
|
|
||||||
[Containments][170][Applets][181]
|
[Containments][354][Applets][365]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=com.github.Melawy.ArchUpdate
|
plugin=org.kde.plasma.cameraindicator
|
||||||
|
|
||||||
[Containments][170][Applets][185]
|
[Containments][354][Applets][369]
|
||||||
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][354][Applets][370]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.networkmanagement
|
plugin=org.kde.plasma.brightness
|
||||||
|
|
||||||
[Containments][170][Applets][188]
|
[Containments][354][Applets][371]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.bluetooth
|
plugin=org.kde.plasma.bluetooth
|
||||||
|
|
||||||
[Containments][170][General]
|
[Containments][354][Applets][372]
|
||||||
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][354][Applets][372][Configuration]
|
||||||
|
PreloadWeight=55
|
||||||
|
|
||||||
|
[Containments][354][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,67 @@ 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 319]
|
||||||
|
floating=1
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 319][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=36
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 348]
|
||||||
|
floating=1
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 348][Defaults]
|
||||||
|
offset=0
|
||||||
|
thickness=36
|
||||||
|
|
||||||
|
[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
|
||||||
|
|
|
@ -54,3 +54,7 @@ triggerLidActionWhenExternalMonitorPresent=false
|
||||||
idleTime=300000
|
idleTime=300000
|
||||||
suspendThenHibernate=false
|
suspendThenHibernate=false
|
||||||
suspendType=1
|
suspendType=1
|
||||||
|
|
||||||
|
[Migration]
|
||||||
|
MigratedActivitiesToPlasma6=powerdevilrc
|
||||||
|
MigratedProfilesToPlasma6=powerdevilrc
|
||||||
|
|
|
@ -17,5 +17,4 @@ HDMI-0=HDMI-0
|
||||||
HDMI-0 LVDS=HDMI-0
|
HDMI-0 LVDS=HDMI-0
|
||||||
HDMI-1=HDMI-1
|
HDMI-1=HDMI-1
|
||||||
MenuBar=Disabled
|
MenuBar=Disabled
|
||||||
State=AAAA/wAAAAD9AAAAAAAABccAAAK8AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
|
|
||||||
ToolBarsMovable=Disabled
|
ToolBarsMovable=Disabled
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
<!DOCTYPE gui>
|
<?xml version='1.0'?>
|
||||||
<gui translationDomain="kxmlgui5" version="38" name="dolphin">
|
<!DOCTYPE gui SYSTEM 'kpartgui.dtd'>
|
||||||
<MenuBar alreadyVisited="1">
|
<gui name="dolphin" version="40">
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="file">
|
<MenuBar>
|
||||||
<text translationDomain="kxmlgui5">&File</text>
|
<Menu name="file">
|
||||||
<Action name="file_new"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="new_menu"/>
|
<Action name="new_menu"/>
|
||||||
<Action name="file_new"/>
|
<Action name="file_new"/>
|
||||||
<Action name="new_tab"/>
|
<Action name="new_tab"/>
|
||||||
|
@ -21,23 +19,8 @@
|
||||||
<Action name="show_target"/>
|
<Action name="show_target"/>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<Action name="properties"/>
|
<Action name="properties"/>
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="file_close"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="file_quit"/>
|
|
||||||
</Menu>
|
</Menu>
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="edit">
|
<Menu name="edit">
|
||||||
<text translationDomain="kxmlgui5">&Edit</text>
|
|
||||||
<Action name="edit_undo"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="edit_cut"/>
|
|
||||||
<Action name="edit_copy"/>
|
|
||||||
<Action name="edit_paste"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="edit_select_all"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="edit_find"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="edit_undo"/>
|
<Action name="edit_undo"/>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<Action name="edit_cut"/>
|
<Action name="edit_cut"/>
|
||||||
|
@ -54,13 +37,7 @@
|
||||||
<Action name="edit_select_all"/>
|
<Action name="edit_select_all"/>
|
||||||
<Action name="invert_selection"/>
|
<Action name="invert_selection"/>
|
||||||
</Menu>
|
</Menu>
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="view">
|
<Menu name="view">
|
||||||
<text translationDomain="kxmlgui5">&View</text>
|
|
||||||
<Action name="view_zoom_in"/>
|
|
||||||
<Action name="view_zoom_out"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="view_redisplay"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="view_zoom_in"/>
|
<Action name="view_zoom_in"/>
|
||||||
<Action name="view_zoom_reset"/>
|
<Action name="view_zoom_reset"/>
|
||||||
<Action name="view_zoom_out"/>
|
<Action name="view_zoom_out"/>
|
||||||
|
@ -71,40 +48,28 @@
|
||||||
<Action name="show_preview"/>
|
<Action name="show_preview"/>
|
||||||
<Action name="show_in_groups"/>
|
<Action name="show_in_groups"/>
|
||||||
<Action name="show_hidden_files"/>
|
<Action name="show_hidden_files"/>
|
||||||
|
<Action name="act_as_admin"/>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<Action name="split_view"/>
|
<Action name="split_view_menu"/>
|
||||||
|
<Action name="popout_split_view"/>
|
||||||
<Action name="split_stash"/>
|
<Action name="split_stash"/>
|
||||||
<Action name="redisplay"/>
|
<Action name="redisplay"/>
|
||||||
<Action name="stop"/>
|
<Action name="stop"/>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<Action name="panels"/>
|
<Action name="panels"/>
|
||||||
<Menu noMerge="1" icon="edit-select-text" name="location_bar">
|
<Menu icon="edit-select-text" name="location_bar">
|
||||||
<text context="@title:menu" translationDomain="dolphin">Location Bar</text>
|
<text context="@title:menu">Location Bar</text>
|
||||||
<Action name="editable_location"/>
|
<Action name="editable_location"/>
|
||||||
<Action name="replace_location"/>
|
<Action name="replace_location"/>
|
||||||
</Menu>
|
</Menu>
|
||||||
<Separator/>
|
<Separator/>
|
||||||
<Action name="view_properties"/>
|
<Action name="view_properties"/>
|
||||||
</Menu>
|
</Menu>
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="go">
|
<Menu name="go">
|
||||||
<text translationDomain="kxmlgui5">&Go</text>
|
|
||||||
<Action name="go_up"/>
|
|
||||||
<Action name="go_back"/>
|
|
||||||
<Action name="go_forward"/>
|
|
||||||
<Action name="go_home"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="bookmarks"/>
|
<Action name="bookmarks"/>
|
||||||
<Action name="closed_tabs"/>
|
<Action name="closed_tabs"/>
|
||||||
</Menu>
|
</Menu>
|
||||||
<Separator weakSeparator="1"/>
|
<Menu name="tools">
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="tools">
|
|
||||||
<text translationDomain="kxmlgui5">&Tools</text>
|
|
||||||
<Action name="open_preferred_search_tool"/>
|
<Action name="open_preferred_search_tool"/>
|
||||||
<Action name="open_terminal"/>
|
<Action name="open_terminal"/>
|
||||||
<Action name="open_terminal_here"/>
|
<Action name="open_terminal_here"/>
|
||||||
|
@ -112,34 +77,8 @@
|
||||||
<Action name="compare_files"/>
|
<Action name="compare_files"/>
|
||||||
<Action name="change_remote_encoding"/>
|
<Action name="change_remote_encoding"/>
|
||||||
</Menu>
|
</Menu>
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="settings">
|
|
||||||
<text translationDomain="kxmlgui5">&Settings</text>
|
|
||||||
<Action name="options_show_menubar"/>
|
|
||||||
<Merge name="StandardToolBarMenuHandler"/>
|
|
||||||
<Merge name="KMDIViewActions"/>
|
|
||||||
<Action name="options_show_statusbar"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="switch_application_language"/>
|
|
||||||
<Action name="options_configure_keybinding"/>
|
|
||||||
<Action name="options_configure_toolbars"/>
|
|
||||||
<Action name="options_configure"/>
|
|
||||||
</Menu>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Menu alreadyVisited="1" noMerge="1" name="help">
|
|
||||||
<text translationDomain="kxmlgui5">&Help</text>
|
|
||||||
<Action name="help_contents"/>
|
|
||||||
<Action name="help_whats_this"/>
|
|
||||||
<Action name="open_kcommand_bar"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="help_report_bug"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="help_donate"/>
|
|
||||||
<Separator weakSeparator="1"/>
|
|
||||||
<Action name="help_about_app"/>
|
|
||||||
<Action name="help_about_kde"/>
|
|
||||||
</Menu>
|
|
||||||
</MenuBar>
|
</MenuBar>
|
||||||
<ToolBar alreadyVisited="1" noMerge="1" name="mainToolBar">
|
<ToolBar alreadyVisited="1" name="mainToolBar" noMerge="1">
|
||||||
<Action name="go_home"/>
|
<Action name="go_home"/>
|
||||||
<Action name="open_terminal_here"/>
|
<Action name="open_terminal_here"/>
|
||||||
<Separator name="separator_0"/>
|
<Separator name="separator_0"/>
|
||||||
|
@ -194,27 +133,27 @@
|
||||||
</disable>
|
</disable>
|
||||||
</State>
|
</State>
|
||||||
<ActionProperties scheme="Default">
|
<ActionProperties scheme="Default">
|
||||||
<Action priority="0" name="go_back"/>
|
<Action name="closed_tabs" priority="0"/>
|
||||||
<Action priority="0" name="go_forward"/>
|
<Action name="compact" priority="0"/>
|
||||||
<Action priority="0" name="go_up"/>
|
<Action name="details" priority="0"/>
|
||||||
<Action priority="0" name="go_home"/>
|
<Action name="edit_copy" priority="0"/>
|
||||||
<Action priority="0" name="stop"/>
|
<Action name="edit_cut" priority="0"/>
|
||||||
<Action priority="0" name="icons"/>
|
<Action name="edit_paste" priority="0"/>
|
||||||
<Action priority="0" name="compact"/>
|
<Action name="go_back" priority="0"/>
|
||||||
<Action priority="0" name="details"/>
|
<Action name="go_forward" priority="0"/>
|
||||||
<Action priority="0" name="view_zoom_in"/>
|
<Action name="go_home" priority="0"/>
|
||||||
<Action priority="0" name="view_zoom_reset"/>
|
<Action name="go_up" priority="0"/>
|
||||||
<Action priority="0" name="view_zoom_out"/>
|
<Action name="icons" priority="0"/>
|
||||||
<Action priority="0" name="edit_cut"/>
|
<Action name="new_tab" priority="0"/>
|
||||||
<Action priority="0" name="edit_copy"/>
|
<Action name="open_terminal_here" priority="0"/>
|
||||||
<Action priority="0" name="edit_paste"/>
|
<Action name="show_hidden_files" priority="0"/>
|
||||||
<Action priority="0" name="toggle_search"/>
|
<Action name="sort" priority="0"/>
|
||||||
<Action priority="0" name="toggle_filter"/>
|
<Action name="stop" priority="0"/>
|
||||||
<Action priority="0" name="show_hidden_files"/>
|
<Action name="toggle_filter" priority="0"/>
|
||||||
<Action priority="0" name="open_terminal_here"/>
|
<Action name="toggle_search" priority="0"/>
|
||||||
<Action priority="0" name="new_tab"/>
|
<Action name="view_redisplay" priority="0"/>
|
||||||
<Action priority="0" name="view_redisplay"/>
|
<Action name="view_zoom_in" priority="0"/>
|
||||||
<Action priority="0" name="closed_tabs"/>
|
<Action name="view_zoom_out" priority="0"/>
|
||||||
<Action priority="0" name="sort"/>
|
<Action name="view_zoom_reset" priority="0"/>
|
||||||
</ActionProperties>
|
</ActionProperties>
|
||||||
</gui>
|
</gui>
|
||||||
|
|
Loading…
Reference in New Issue