This commit is contained in:
Valeria Fadeeva 2023-05-12 23:54:01 +05:00
parent 3746d00dba
commit 020b17ea38
126 changed files with 5347 additions and 1 deletions

View File

@ -2,7 +2,7 @@
_gitname="$(basename $(pwd))"
pkgname=("melawy-$_gitname")
pkgver=3.3.0.2
pkgver=3.3.0.3
pkgrel=1
pkgdesc="$(head -n 2 README.md | tail -n 1)"
arch=("i686" "x86_64")

6
core/melawy-skel-liveuser/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.pkg.tar
*.pkg.tar.*
*.zst
*.zst.*
pkg/
.idea/

View File

@ -0,0 +1,25 @@
# Maintainer: Valeria Fadeeva <valeria@fadeeva.me>
pkgname='melawy-skel-liveuser'
pkgver=1.0
pkgrel=1
pkgdesc='Liveuser specific skel setup for Melawy Linux'
arch=('any')
url='https://github.com/Melawy'
license=('AGPL3')
source=()
package() {
# Clone file structure
cp -r --no-preserve=ownership "${srcdir}/"* "${pkgdir}"
# Find all scripts
readarray -d '' scripts < <(find "${pkgdir}/etc/skel" -type f \( -iname "*.sh" -o -iname "*.bash" \) -print0)
# Make scripts executable
for script in "${scripts[@]}";
do
[[ -f ${script} ]] && chmod +x "${script}"
done
}

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,2 @@
Xcursor.theme: Qogir
Xcursor.size: 16

View File

@ -0,0 +1,3 @@
#
# ~/.bash_logout
#

View File

@ -0,0 +1,5 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc

View File

@ -0,0 +1,86 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
# Advanced command-not-found hook
source /usr/share/doc/find-the-command/ftc.bash
xhost +local:root > /dev/null 2>&1
complete -cf sudo
shopt -s cdspell
shopt -s checkwinsize
shopt -s cmdhist
shopt -s dotglob
shopt -s expand_aliases
shopt -s extglob
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_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
. /usr/share/powerline/bindings/bash/powerline.sh

View File

@ -0,0 +1,17 @@
[qt]
GUIEffects=none
KDE\contrast=4
KWinPalette\activeBackground=#3d3d3e
KWinPalette\activeBlend=#3e3e3e
KWinPalette\activeForeground=#969696
KWinPalette\activeTitleBtnBg=#414141
KWinPalette\frame=#414141
KWinPalette\inactiveBackground=#3d3d3e
KWinPalette\inactiveBlend=#3e3e3e
KWinPalette\inactiveForeground=#9b9b9b
KWinPalette\inactiveFrame=#424242
KWinPalette\inactiveTitleBtnBg=#424242
Palette\active=#aaaaaa, #505050, #565656, #4c4c4c, #262626, #393939, #aaaaaa, #ffffff, #50b4ce, #464646, #414141, #1b1b1b, #a75d8e, #ffffff, #d168ad, #ce80ff, #4b4b4b, #000000, #1d6c8b, #c8c8c8, #aaaaaa
Palette\disabled=#616161, #4c4c4c, #535353, #494949, #242424, #363636, #646464, #ffffff, #4c6e76, #434343, #3e3e3e, #1a1a1a, #3e3e3e, #616161, #714e65, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #aaaaaa
Palette\inactive=#a8a8a8, #515151, #575757, #4d4d4d, #272727, #3a3a3a, #a8a8a8, #ffffff, #5fb1c6, #474747, #424242, #1c1c1c, #67415a, #aea6ab, #c271a6, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #aaaaaa
font="Noto Sans,10,-1,0,50,0,0,0,0,0"

View File

@ -0,0 +1,2 @@
[$Version]
update_info=fonts_akregator.upd:Plasma_Fonts_Akregator

View File

@ -0,0 +1,245 @@
[Desktop Entry]
Type=Application
Version=1.0
Name=Install System
GenericName=System Installer
Comment=Calamares System Installer
Keywords=calamares;system;installer;
TryExec=calamares
Exec=sh -c "pkexec calamares"
Categories=Qt;System;
Icon=calamares
Terminal=false
SingleMainWindow=true
StartupNotify=true
X-AppStream-Ignore=true
Name[ar]=تثبيت النظام
Icon[ar]=كالامارس
GenericName[ar]=مثبت النظام
Comment[ar]=كالامارس - مثبت النظام
Name[as]=ি
Icon[as]=
GenericName[as]=ি
Comment[as]= ি
Name[ast]=Instalar el sistema
Icon[ast]=calamares
GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares Instalador del sistema
Name[az]=Sistemi Quraşdırmaq
Icon[az]=calamares
GenericName[az]=Sistem Quraşdırıcısı
Comment[az]=Calamares Sistem Quraşdırıcısı
Name[az_AZ]=Sistemi quraşdırmaq
Icon[az_AZ]=calamares
GenericName[az_AZ]=Sistem quraşdırcısı
Comment[az_AZ]=Calamares Sistem Quraşdırıcısı
Name[be]=Усталяваць сістэму
Icon[be]=calamares
GenericName[be]=Усталёўшчык сістэмы
Comment[be]=Calamares усталёўшчык сістэмы
Name[bg]=Инсталирай системата
Icon[bg]=calamares
GenericName[bg]=Системен инсталатор
Comment[bg]=Calamares Системен инсталатор
Name[bn]=ি
Icon[bn]=
GenericName[bn]=ি
Comment[bn]= - ি
Name[ca]=Instal·la el sistema
Icon[ca]=calamares
GenericName[ca]=Instal·lador de sistema
Comment[ca]=Calamares Instal·lador de sistema
Name[cs_CZ]=Nainstalovat systém
Icon[cs_CZ]=calamares
GenericName[cs_CZ]=Instalátor systému
Comment[cs_CZ]=Calamares instalátor operačních systémů
Name[da]=Installér system
Icon[da]=calamares
GenericName[da]=Systeminstallationsprogram
Comment[da]=Calamares Systeminstallationsprogram
Name[de]=System installieren
Icon[de]=calamares
GenericName[de]=Installation des Betriebssystems
Comment[de]=Calamares - Installation des Betriebssystems
Name[el]=Εγκατάσταση συστήματος
Icon[el]=calamares
GenericName[el]=Εγκατάσταση συστήματος
Comment[el]=Calamares Εγκατάσταση συστήματος
Name[en_GB]=Install System
Icon[en_GB]=calamares
GenericName[en_GB]=System Installer
Comment[en_GB]=Calamares System Installer
Name[eo]=Instali Sistemo
Icon[eo]=calamares
GenericName[eo]=Sistema Instalilo
Comment[eo]=Calamares Sistema Instalilo
Name[es]=Instalar el sistema
Icon[es]=calamares
GenericName[es]=Instalador del sistema
Comment[es]=Calamares Instalador del sistema
Name[es_MX]=Instalar el Sistema
Icon[es_MX]=calamares
GenericName[es_MX]=Instalador del sistema
Comment[es_MX]=Calamares - Instalador del sistema
Name[es_PR]=Instalar el sistema
Name[et]=Paigalda süsteem
Icon[et]=calamares
GenericName[et]=Süsteemipaigaldaja
Comment[et]=Calamares süsteemipaigaldaja
Name[eu]=Sistema instalatu
Icon[eu]=calamares
GenericName[eu]=Sistema instalatzailea
Comment[eu]=Calamares - sistema instalatzailea
Name[fa]=نصب سامانه
Icon[fa]=کالامارس
GenericName[fa]=نصبکننده سامانه
Comment[fa]=کالامارس نصبکننده سامانه
Name[fi_FI]=Asenna järjestelmä
Icon[fi_FI]=calamares
GenericName[fi_FI]=Järjestelmän asennusohjelma
Comment[fi_FI]=Calamares Järjestelmän asentaja
Name[fr]=Installer le système
Icon[fr]=calamares
GenericName[fr]=Installateur système
Comment[fr]=Calamares - Installateur système
Name[fur]=Instale il sisteme
Icon[fur]=calamares
GenericName[fur]=Program di instalazion dal sisteme
Comment[fur]=Calamares Program di instalazion dal sisteme
Name[gl]=Instalación do Sistema
Icon[gl]=calamares
GenericName[gl]=Instalador de sistemas
Comment[gl]=Calamares Instalador de sistemas
Name[he]=התקנת מערכת
Icon[he]=calamares
GenericName[he]=אשף התקנה
Comment[he]=Calamares - אשף התקנה
Name[hi]=ि
Icon[hi]=calamares
GenericName[hi]=ि
Comment[hi]=Calamares ि
Name[hr]=Instaliraj sustav
Icon[hr]=calamares
GenericName[hr]=Instalacija sustava
Comment[hr]=Calamares Instalacija sustava
Name[hu]=Rendszer telepítése
Icon[hu]=calamares
GenericName[hu]=Rendszertelepítő
Comment[hu]=Calamares Rendszertelepítő
Name[id]=Instal Sistem
Icon[id]=calamares
GenericName[id]=Pemasang
Comment[id]=Calamares Pemasang Sistem
Name[ie]=Installar li sistema
Icon[ie]=calamares
GenericName[ie]=Installator del sistema
Comment[ie]=Calamares Installator del sistema
Name[is]=Setja upp kerfið
Icon[is]=calamares
GenericName[is]=Kerfis uppsetning
Comment[is]=Calamares Kerfis uppsetning
Name[it_IT]=Installa il sistema
Icon[it_IT]=calamares
GenericName[it_IT]=Programma d'installazione del sistema
Comment[it_IT]=Calamares Programma d'installazione del sistema
Name[ja]=
Icon[ja]=calamares
GenericName[ja]=
Comment[ja]=Calamares
Name[ko]=
Icon[ko]=
GenericName[ko]=
Comment[ko]=
Name[lt]=Įdiegti Sistemą
Icon[lt]=calamares
GenericName[lt]=Sistemos diegimas į kompiuterį
Comment[lt]=Calamares Sistemos diegimo programa
Name[mk]=Инсталирај го системот
Icon[mk]=calamares
GenericName[mk]=Системен Инсталер
Comment[mk]=Calamares - Системен Инсталер
Name[ml]=ി
Icon[ml]=
GenericName[ml]=ി
Comment[ml]= - ി
Name[nb]=Installer System
Icon[nb]=calamares
GenericName[nb]=Systeminstallatør
Comment[nb]=Calamares-systeminstallatør
Name[ne_NP]= ि
Icon[ne_NP]=Calamares
GenericName[ne_NP]=ि
Comment[ne_NP]=Calamares - ि
Name[nl]=Installeer systeem
Icon[nl]=calamares
GenericName[nl]=Installatieprogramma
Comment[nl]=Calamares Installatieprogramma
Name[pl]=Zainstaluj system
Icon[pl]=calamares
GenericName[pl]=Instalator systemu
Comment[pl]=Calamares Instalator systemu
Name[pt_BR]=Sistema de Instalação
Icon[pt_BR]=calamares
GenericName[pt_BR]=Instalador de Sistema
Comment[pt_BR]=Calamares Instalador de Sistema
Name[pt_PT]=Instalar Sistema
Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Instalador de Sistema - Calamares
Name[ro]=Instalează sistemul
Icon[ro]=calamares
GenericName[ro]=Instalator de sistem
Comment[ro]=Calamares Instalator de sistem
Name[ru]=Установить систему
Icon[ru]=calamares
GenericName[ru]=Установщик системы
Comment[ru]=Calamares - Установщик системы
Name[si]=
Icon[si]=
GenericName[si]=
Comment[si]=Calamares -
Name[sk]=Inštalovať systém
Icon[sk]=calamares
GenericName[sk]=Inštalátor systému
Comment[sk]=Calamares Inštalátor systému
Name[sl]=Namesti sistem
Name[sq]=Instalo Sistemin
Icon[sq]=calamares
GenericName[sq]=Instalues Sistemi
Comment[sq]=Calamares Instalues Sistemi
Name[sr]=Инсталирај систем
Icon[sr]=calamares
GenericName[sr]=Инсталатер система
Comment[sr]=Каламарес инсталатер система
Name[sr@latin]=Instaliraj sistem
Name[sv]=Installera system
Icon[sv]=calamares
GenericName[sv]=Systeminstallerare
Comment[sv]=Calamares Systeminstallerare
Name[tg]=Насбкунии низом
Icon[tg]=calamares
GenericName[tg]=Насбкунандаи низомӣ
Comment[tg]=Calamares Насбкунандаи низомӣ
Name[th]=
Name[tr_TR]=Sistemi Yükle
Icon[tr_TR]=calamares
GenericName[tr_TR]=Sistem Yükleyici
Comment[tr_TR]=Calamares Sistem Yükleyici
Name[uk]=Встановити Систему
Icon[uk]=calamares
GenericName[uk]=Встановлювач системи
Comment[uk]=Calamares - Встановлювач системи
Name[vi]=Cài đt h thng
Icon[vi]=calamares
GenericName[vi]=B cài đt h thng
Comment[vi]=Calamares B cài đt h thng
Name[zh_CN]=
Icon[zh_CN]=calamares
GenericName[zh_CN]=
Comment[zh_CN]=Calamares
Name[zh_TW]=
Icon[zh_TW]=calamares
GenericName[zh_TW]=
Comment[zh_TW]=Calamares

View File

@ -0,0 +1,34 @@
[Misc]
version=13
[Show]
channels=false
comment=false
contentCreated=false
contentSize=false
created=false
depends=false
embeddedRating=false
fileName=false
fileSize=false
height=false
kfileitem#group=false
kfileitem#owner=false
kfileitem#permissions=false
lastModified=false
lyrics=false
mimeType=false
photoGpsLatitude=false
photoGpsLongitude=false
photoMeteringMode=false
photoPixelXDimension=false
photoPixelYDimension=false
photoSaturation=false
photoSharpness=false
photoWhiteBalance=false
replayGainAlbumGain=false
replayGainAlbumPeak=false
replayGainTrackGain=false
replayGainTrackPeak=false
url=false
width=false

View File

@ -0,0 +1,4 @@
[General]
dbVersion=2
exclude filters=*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,.venv,venv,core-dumps,lost+found
exclude filters version=8

View File

@ -0,0 +1,2 @@
[Devices]
connectedDevices=

View File

@ -0,0 +1,14 @@
[$Version]
update_info=dolphin_detailsmodesettings.upd:rename-leading-padding
[General]
Version=202
ViewPropsTimestamp=2023,4,19,14,56,4.151
[KFileDialog Settings]
Places Icons Auto-resize=false
Places Icons Static Size=22
[MainWindow]
MenuBar=Disabled
ToolBarsMovable=Disabled

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#da4453" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#ff98a2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 971 B

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 971 B

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 958 B

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 958 B

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<circle cx="9" cy="9" r="9"/>
</g>
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
<title>Qt SVG Document</title>
<desc>Generated with Qt</desc>
<defs>
</defs>
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
</g>
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,84 @@
@define-color borders_breeze #5b5b5b;
@define-color content_view_bg_breeze #464646;
@define-color error_color_backdrop_breeze #cb505d;
@define-color error_color_breeze #da4453;
@define-color error_color_insensitive_backdrop_breeze #744247;
@define-color error_color_insensitive_breeze #744247;
@define-color insensitive_base_color_breeze #434343;
@define-color insensitive_base_fg_color_breeze #646464;
@define-color insensitive_bg_color_breeze #3e3e3e;
@define-color insensitive_borders_breeze #474747;
@define-color insensitive_fg_color_breeze #616161;
@define-color insensitive_selected_bg_color_breeze #3e3e3e;
@define-color insensitive_selected_fg_color_breeze #616161;
@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
@define-color insensitive_unfocused_fg_color_breeze #616161;
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
@define-color link_color_breeze #d168ad;
@define-color link_visited_color_breeze #ce80ff;
@define-color success_color_backdrop_breeze #318654;
@define-color success_color_breeze #1e884a;
@define-color success_color_insensitive_backdrop_breeze #355944;
@define-color success_color_insensitive_breeze #355944;
@define-color theme_base_color_breeze #464646;
@define-color theme_bg_color_breeze #414141;
@define-color theme_button_background_backdrop_breeze #515151;
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
@define-color theme_button_background_insensitive_breeze #4c4c4c;
@define-color theme_button_background_normal_breeze #505050;
@define-color theme_button_decoration_focus_backdrop_breeze #c171a5;
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #77546b;
@define-color theme_button_decoration_focus_breeze #d168ad;
@define-color theme_button_decoration_focus_insensitive_breeze #77546b;
@define-color theme_button_decoration_hover_backdrop_breeze #c171a5;
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #77546b;
@define-color theme_button_decoration_hover_breeze #d168ad;
@define-color theme_button_decoration_hover_insensitive_breeze #77546b;
@define-color theme_button_foreground_active_backdrop_breeze #aea6ab;
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
@define-color theme_button_foreground_active_breeze #ffffff;
@define-color theme_button_foreground_active_insensitive_breeze #616161;
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
@define-color theme_button_foreground_insensitive_breeze #4c6e76;
@define-color theme_button_foreground_normal_breeze #50b4ce;
@define-color theme_fg_color_breeze #aaaaaa;
@define-color theme_header_background_backdrop_breeze #2c3034;
@define-color theme_header_background_breeze #3c3c3c;
@define-color theme_header_background_light_breeze #414141;
@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
@define-color theme_header_foreground_breeze #c8c8c8;
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
@define-color theme_hovering_selected_bg_color_breeze #d168ad;
@define-color theme_selected_bg_color_breeze #a75d8e;
@define-color theme_selected_fg_color_breeze #ffffff;
@define-color theme_text_color_breeze #aaaaaa;
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
@define-color theme_titlebar_background_breeze #3c3c3c;
@define-color theme_titlebar_background_light_breeze #414141;
@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
@define-color theme_titlebar_foreground_breeze #c8c8c8;
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
@define-color theme_unfocused_base_color_breeze #474747;
@define-color theme_unfocused_bg_color_breeze #424242;
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
@define-color theme_unfocused_selected_bg_color_alt_breeze #67415a;
@define-color theme_unfocused_selected_bg_color_breeze #67415a;
@define-color theme_unfocused_selected_fg_color_breeze #aea6ab;
@define-color theme_unfocused_text_color_breeze #a8a8a8;
@define-color theme_unfocused_view_bg_color_breeze #434343;
@define-color theme_unfocused_view_text_color_breeze #646464;
@define-color theme_view_active_decoration_color_breeze #d168ad;
@define-color theme_view_hover_decoration_color_breeze #d168ad;
@define-color tooltip_background_breeze #1d6c8b;
@define-color tooltip_border_breeze #48839a;
@define-color tooltip_text_breeze #c8c8c8;
@define-color unfocused_borders_breeze #5c5c5c;
@define-color unfocused_insensitive_borders_breeze #474747;
@define-color warning_color_backdrop_breeze #e77b1a;
@define-color warning_color_breeze #f67400;
@define-color warning_color_insensitive_backdrop_breeze #7d522b;
@define-color warning_color_insensitive_breeze #7d522b;

View File

@ -0,0 +1 @@
@import 'colors.css';

View File

@ -0,0 +1,15 @@
[Settings]
gtk-application-prefer-dark-theme=true
gtk-button-images=true
gtk-cursor-theme-name=Qogir-dark
gtk-cursor-theme-size=24
gtk-decoration-layout=icon:minimize,maximize,close
gtk-enable-animations=true
gtk-font-name=Noto Sans, 10
gtk-icon-theme-name=Colloid-dark
gtk-menu-images=true
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
gtk-primary-button-warps-slider=false
gtk-theme-name=Colloid-Dark
gtk-toolbar-style=3
gtk-xft-dpi=98304

View File

@ -0,0 +1,84 @@
@define-color borders_breeze #5b5b5b;
@define-color content_view_bg_breeze #464646;
@define-color error_color_backdrop_breeze #cb505d;
@define-color error_color_breeze #da4453;
@define-color error_color_insensitive_backdrop_breeze #744247;
@define-color error_color_insensitive_breeze #744247;
@define-color insensitive_base_color_breeze #434343;
@define-color insensitive_base_fg_color_breeze #646464;
@define-color insensitive_bg_color_breeze #3e3e3e;
@define-color insensitive_borders_breeze #474747;
@define-color insensitive_fg_color_breeze #616161;
@define-color insensitive_selected_bg_color_breeze #3e3e3e;
@define-color insensitive_selected_fg_color_breeze #616161;
@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
@define-color insensitive_unfocused_fg_color_breeze #616161;
@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
@define-color link_color_breeze #d168ad;
@define-color link_visited_color_breeze #ce80ff;
@define-color success_color_backdrop_breeze #318654;
@define-color success_color_breeze #1e884a;
@define-color success_color_insensitive_backdrop_breeze #355944;
@define-color success_color_insensitive_breeze #355944;
@define-color theme_base_color_breeze #464646;
@define-color theme_bg_color_breeze #414141;
@define-color theme_button_background_backdrop_breeze #515151;
@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
@define-color theme_button_background_insensitive_breeze #4c4c4c;
@define-color theme_button_background_normal_breeze #505050;
@define-color theme_button_decoration_focus_backdrop_breeze #c171a5;
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #77546b;
@define-color theme_button_decoration_focus_breeze #d168ad;
@define-color theme_button_decoration_focus_insensitive_breeze #77546b;
@define-color theme_button_decoration_hover_backdrop_breeze #c171a5;
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #77546b;
@define-color theme_button_decoration_hover_breeze #d168ad;
@define-color theme_button_decoration_hover_insensitive_breeze #77546b;
@define-color theme_button_foreground_active_backdrop_breeze #aea6ab;
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
@define-color theme_button_foreground_active_breeze #ffffff;
@define-color theme_button_foreground_active_insensitive_breeze #616161;
@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
@define-color theme_button_foreground_insensitive_breeze #4c6e76;
@define-color theme_button_foreground_normal_breeze #50b4ce;
@define-color theme_fg_color_breeze #aaaaaa;
@define-color theme_header_background_backdrop_breeze #2c3034;
@define-color theme_header_background_breeze #3c3c3c;
@define-color theme_header_background_light_breeze #414141;
@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
@define-color theme_header_foreground_breeze #c8c8c8;
@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
@define-color theme_hovering_selected_bg_color_breeze #d168ad;
@define-color theme_selected_bg_color_breeze #a75d8e;
@define-color theme_selected_fg_color_breeze #ffffff;
@define-color theme_text_color_breeze #aaaaaa;
@define-color theme_titlebar_background_backdrop_breeze #2c3034;
@define-color theme_titlebar_background_breeze #3c3c3c;
@define-color theme_titlebar_background_light_breeze #414141;
@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
@define-color theme_titlebar_foreground_breeze #c8c8c8;
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
@define-color theme_unfocused_base_color_breeze #474747;
@define-color theme_unfocused_bg_color_breeze #424242;
@define-color theme_unfocused_fg_color_breeze #a8a8a8;
@define-color theme_unfocused_selected_bg_color_alt_breeze #67415a;
@define-color theme_unfocused_selected_bg_color_breeze #67415a;
@define-color theme_unfocused_selected_fg_color_breeze #aea6ab;
@define-color theme_unfocused_text_color_breeze #a8a8a8;
@define-color theme_unfocused_view_bg_color_breeze #434343;
@define-color theme_unfocused_view_text_color_breeze #646464;
@define-color theme_view_active_decoration_color_breeze #d168ad;
@define-color theme_view_hover_decoration_color_breeze #d168ad;
@define-color tooltip_background_breeze #1d6c8b;
@define-color tooltip_border_breeze #48839a;
@define-color tooltip_text_breeze #c8c8c8;
@define-color unfocused_borders_breeze #5c5c5c;
@define-color unfocused_insensitive_borders_breeze #474747;
@define-color warning_color_backdrop_breeze #e77b1a;
@define-color warning_color_breeze #f67400;
@define-color warning_color_insensitive_backdrop_breeze #7d522b;
@define-color warning_color_insensitive_breeze #7d522b;

View File

@ -0,0 +1 @@
@import 'colors.css';

View File

@ -0,0 +1,12 @@
[Settings]
gtk-application-prefer-dark-theme=true
gtk-cursor-theme-name=Qogir-dark
gtk-cursor-theme-size=24
gtk-decoration-layout=icon:minimize,maximize,close
gtk-enable-animations=true
gtk-font-name=Noto Sans, 10
gtk-icon-theme-name=Colloid-dark
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
gtk-primary-button-warps-slider=false
gtk-theme-name=Colloid-Dark
gtk-xft-dpi=98304

View File

@ -0,0 +1,2 @@
# created by KDE Plasma, ср мая 10 00:53:15 2023
#

View File

@ -0,0 +1,5 @@
# created by KDE Plasma, ср мая 10 00:53:15 2023
#
gtk-alternative-button-order = 1

View File

@ -0,0 +1,2 @@
[$Version]
update_info=gwenview.upd:SideBar_StatusBar_Rename,gwenview.upd:ImageView_AlphaBackgroundMode_Update,gwenview.upd:DeleteThumbnailSetting_Rename

View File

@ -0,0 +1,11 @@
[Favorites-org.kde.plasma.kicker.favorites.instance-27-779ac4a6-f9d4-42fe-b314-de165780e7de]
ordering=preferred://browser,kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,ktp-contactlist.desktop,org.kde.kate.desktop,org.kde.discover
[Favorites-org.kde.plasma.kicker.favorites.instance-27-global]
ordering=preferred://browser,kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,ktp-contactlist.desktop,org.kde.kate.desktop,org.kde.discover
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-779ac4a6-f9d4-42fe-b314-de165780e7de]
ordering=preferred://browser,applications:systemsettings.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.kate.desktop
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-global]
ordering=preferred://browser,applications:systemsettings.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.kate.desktop

View File

@ -0,0 +1,5 @@
[activities]
779ac4a6-f9d4-42fe-b314-de165780e7de=Начальная комната
[main]
currentActivity=779ac4a6-f9d4-42fe-b314-de165780e7de

View File

@ -0,0 +1,2 @@
[$Version]
update_info=fonts_kate.upd:Plasma_Fonts_Kate

View File

@ -0,0 +1,12 @@
[$Version]
update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0,kcminputrc_repeat.upd:kcminputrc_migrate_key_repeat
[Keyboard]
NumLock=0
[Mouse]
X11LibInputXAccelProfileFlat=true
cursorTheme=Qogir-dark
[Tmp]
update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize

View File

@ -0,0 +1,203 @@
updateInfoAdded=true
[ark.upd]
ctime=1682139612
done=add-hamburgermenu-to-toolbar
mtime=1681478642
[breezehighcontrasttobreezedark.upd]
ctime=1683662119
done=BreezeHighContrastToBreezeDark
mtime=1683644707
[breezetobreezeclassic.upd]
ctime=1683662119
done=BreezeToBreezeClassic
mtime=1683644707
[breezetobreezelight.upd]
ctime=1683662119
done=BreezeToBreezeLight
mtime=1683644707
[delete_cursor_old_default_size.upd]
ctime=1683662122
done=DeleteCursorOldDefaultSize
mtime=1683645394
[disable_kmix.upd]
ctime=1683662125
done=PlasmaVolume_DisableKMixAutostart
mtime=1683647360
[dolphin_detailsmodesettings.upd]
ctime=1683039829
done=rename-leading-padding
mtime=1682943960
[filepicker.upd]
ctime=1681131412
done=filepicker-remove-old-previews-entry
mtime=1680361602
[fonts_akregator.upd]
ctime=1683662122
done=Plasma_Fonts_Akregator
mtime=1683645307
[fonts_global.upd]
ctime=1683662122
done=Fonts_Global
mtime=1683645307
[fonts_global_toolbar.upd]
ctime=1683662122
done=Fonts_Global_Toolbar
mtime=1683645307
[fonts_kate.upd]
ctime=1683662122
done=Plasma_Fonts_Kate
mtime=1683645307
[gtkconfig.upd]
ctime=1683662121
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
mtime=1683646568
[gwenview.upd]
ctime=1682139615
done=SideBar_StatusBar_Rename,ImageView_AlphaBackgroundMode_Update,DeleteThumbnailSetting_Rename
mtime=1681472635
[icons_remove_effects.upd]
ctime=1683662122
done=IconsRemoveEffects
mtime=1683645394
[katesession_migration.upd]
ctime=1682139615
done=migrate_kate_sessions_applet_to_kdeplasma-addons
mtime=1681478776
[kcalcrc.upd]
ctime=1682139616
mtime=1681478961
[kcm_rename_plasma_desktop.upd]
ctime=1683662124
done=5.24PlasmaDesktopKCMRename
mtime=1683646941
[kcminputrc_fix_botched_5_21_0.upd]
ctime=1683662124
done=kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0
mtime=1683646941
[kcminputrc_repeat.upd]
ctime=1683662124
done=kcminputrc_migrate_key_repeat
mtime=1683646941
[kde4lightly.upd]
ctime=1679834445
done=5.0KDE4Lightly_2
mtime=1679823631
[kleopatra.upd]
ctime=1682139617
done=kleopatra-15.08-kickoff
mtime=1681476906
[konsole.upd]
ctime=1682139617
done=konsole_globalaccel,add-hamburgermenu-to-toolbar
mtime=1681479421
[konsole_globalaccel.upd]
ctime=1678978909
done=konsole_globalaccel
mtime=1677587889
[krunnerglobalshortcuts2.upd]
ctime=1683662122
done=5.22KRunnerGlobalShortcuts
mtime=1683645394
[krunnerhistory.upd]
ctime=1683662122
done=5.21KRunnerHistory
mtime=1683645394
[kscreenlocker.upd]
ctime=1683662121
done=0.1-autolock
mtime=1683644520
[ksmserver_update_loginMode_value.upd]
ctime=1683662124
done=ksmserver_update_loginMode_value_default_enum
mtime=1683646941
[kwin.upd]
ctime=1683662121
done=replace-scalein-with-scale,port-minimizeanimation-effect-to-js,port-scale-effect-to-js,port-dimscreen-effect-to-js,auto-bordersize,animation-speed,desktop-grid-click-behavior,no-swap-encourage,make-translucency-effect-disabled-by-default,remove-flip-switch-effect,remove-cover-switch-effect,remove-cubeslide-effect,remove-xrender-backend,enable-scale-effect-by-default,overview-group-plugin-id,animation-speed-cleanup,replace-cascaded-zerocornered
mtime=1683644791
[kwinrules.upd]
ctime=1683662121
done=replace-placement-string-to-enum,use-virtual-desktop-ids
mtime=1683644791
[kxkb.upd]
ctime=1683662124
done=remove-empty-lists,add-back-resetoptions
mtime=1683646941
[kxkb_variants.upd]
ctime=1683662124
done=split-variants
mtime=1683646941
[okular.upd]
ctime=1682139617
done=annotation-toolbar,builtin-annotations
mtime=1681472990
[plasmashell-5.27-use-panel-thickness-in-default-group.upd]
ctime=1683662122
done=plasmashell-5.27-use-panel-thickness-in-default-group
mtime=1683645394
[smb4k_3_0_0.upd]
ctime=1681014034
done=Smb4K_3.0.0
mtime=1680993817
[smb4ksettings.upd]
ctime=1681014034
mtime=1680993817
[spectacle_clipboard.upd]
ctime=1682139617
done=clipboard-settings-change
mtime=1681473156
[spectacle_newConfig.upd]
ctime=1682139617
mtime=1681473156
[spectacle_rememberregion.upd]
ctime=1682139617
done=spectacle-migrate-rememberregion
mtime=1681473156
[spectacle_shortcuts.upd]
ctime=1682139617
done=spectacle-migrate-shortcuts
mtime=1681473156
[style_widgetstyle_default_breeze.upd]
ctime=1683662122
done=StyleWidgetStyleDefaultBreeze
mtime=1683645394

View File

@ -0,0 +1,30 @@
[Source-applicationVersion]
dataSourceCommonSettings\activeState=true
[Source-locale]
dataSourceCommonSettings\activeState=true
[Source-places]
dataSourceCommonSettings\activeState=true
[Source-platform]
dataSourceCommonSettings\activeState=true
[Source-qtVersion]
dataSourceCommonSettings\activeState=true
[Source-screens]
dataSourceCommonSettings\activeState=true
[Source-settings]
dataSourceCommonSettings\activeState=true
[Source-startCount]
dataSourceCommonSettings\activeState=true
[Source-usageTime]
dataSourceCommonSettings\activeState=true
[UserFeedback]
ApplicationStartCount=1
ApplicationTime=391

View File

@ -0,0 +1,30 @@
[Source-applicationVersion]
dataSourceCommonSettings\activeState=true
[Source-compiler]
dataSourceCommonSettings\activeState=true
[Source-opengl]
dataSourceCommonSettings\activeState=true
[Source-panelCount]
dataSourceCommonSettings\activeState=true
[Source-platform]
dataSourceCommonSettings\activeState=true
[Source-qpa]
dataSourceCommonSettings\activeState=true
[Source-qtVersion]
dataSourceCommonSettings\activeState=true
[Source-screens]
dataSourceCommonSettings\activeState=true
[Source-usageTime]
dataSourceCommonSettings\activeState=true
[UserFeedback]
ApplicationStartCount=2
ApplicationTime=1082

View File

@ -0,0 +1,2 @@
[Module-device_automounter]
autoload=false

View File

@ -0,0 +1,2 @@
[Mouse]
cursorTheme=breeze_cursors

View File

@ -0,0 +1,8 @@
[General]
ColorScheme=Melawy
[Icons]
Theme=breeze-dark
[KDE]
widgetStyle=Breeze

View File

@ -0,0 +1,2 @@
[Greeter]
Theme=org.kde.breeze.desktop

View File

@ -0,0 +1,3 @@
[KSplash]
Engine=KSplashQML
Theme=org.kde.breeze.desktop

View File

@ -0,0 +1,12 @@
[TabBox]
DesktopLayout=org.kde.breeze.desktop
DesktopListLayout=org.kde.breeze.desktop
LayoutName=org.kde.breeze.desktop
[Windows]
Placement=Centered
[org.kde.kdecoration2]
NoPlugin=false
library=org.kde.breeze
theme=Breeze

View File

@ -0,0 +1 @@
org.kde.breezedark.desktop

View File

@ -0,0 +1,2 @@
[Theme]
name=default

View File

@ -0,0 +1,163 @@
[$Version]
update_info=filepicker.upd:filepicker-remove-old-previews-entry,fonts_global.upd:Fonts_Global,fonts_global_toolbar.upd:Fonts_Global_Toolbar,icons_remove_effects.upd:IconsRemoveEffects,kwin.upd:animation-speed,style_widgetstyle_default_breeze.upd:StyleWidgetStyleDefaultBreeze
[ColorEffects:Disabled]
ChangeSelectionColor=
Color=112,111,110
ColorAmount=0
ColorEffect=0
ContrastAmount=0.65
ContrastEffect=1
Enable=
IntensityAmount=0.1
IntensityEffect=2
[ColorEffects:Inactive]
ChangeSelectionColor=true
Color=112,111,110
ColorAmount=0.025
ColorEffect=2
ContrastAmount=0.1
ContrastEffect=2
Enable=true
IntensityAmount=0
IntensityEffect=0
[Colors:Button]
BackgroundAlternate=170,96,145
BackgroundNormal=80,80,80
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=80,180,206
ForegroundPositive=30,136,74
ForegroundVisited=206,128,255
[Colors:Complementary]
BackgroundAlternate=30,87,116
BackgroundNormal=60,60,60
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=252,252,252
ForegroundPositive=39,174,96
ForegroundVisited=155,89,182
[Colors:Header]
BackgroundAlternate=90,90,90
BackgroundNormal=60,60,60
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=200,200,200
ForegroundPositive=39,174,96
ForegroundVisited=155,89,182
[Colors:Header][Inactive]
BackgroundAlternate=49,54,59
BackgroundNormal=42,46,50
DecorationFocus=61,174,233
DecorationHover=61,174,233
ForegroundActive=61,174,233
ForegroundInactive=161,169,177
ForegroundLink=29,153,243
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=252,252,252
ForegroundPositive=39,174,96
ForegroundVisited=155,89,182
[Colors:Selection]
BackgroundAlternate=167,93,142
BackgroundNormal=167,93,142
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=255,255,255
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=255,255,255
ForegroundPositive=30,136,74
ForegroundVisited=206,128,255
[Colors:Tooltip]
BackgroundAlternate=60,60,60
BackgroundNormal=29,108,139
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=200,200,200
ForegroundPositive=30,136,74
ForegroundVisited=206,128,255
[Colors:View]
BackgroundAlternate=75,75,75
BackgroundNormal=70,70,70
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=170,170,170
ForegroundPositive=30,136,74
ForegroundVisited=206,128,255
[Colors:Window]
BackgroundAlternate=60,60,60
BackgroundNormal=65,65,65
DecorationFocus=209,104,173
DecorationHover=209,104,173
ForegroundActive=209,104,173
ForegroundInactive=170,170,170
ForegroundLink=209,104,173
ForegroundNegative=218,68,83
ForegroundNeutral=246,116,0
ForegroundNormal=170,170,170
ForegroundPositive=30,136,74
ForegroundVisited=206,128,255
[General]
AccentColor=209,104,173
ColorSchemeHash=a0b6db6b94022a92715b668c12281ffe0e4e01b3
Name[ru_RU]=Breeze, светлый вариант
Name=Breeze Light
accentColorFromWallpaper=true
shadeSortColumn=true
widgetStyle=Breeze
[Icons]
Theme=Colloid-dark
[KDE]
ColorScheme=BreezeLight
LookAndFeelPackage=org.kde.breezedark.desktop
SingleClick=false
contrast=4
widgetStyle=Lightly
[WM]
activeBackground=61,61,62
activeBlend=62,62,62
activeForeground=150,150,150
inactiveBackground=61,61,62
inactiveBlend=62,62,62
inactiveForeground=155,155,155

View File

@ -0,0 +1,3 @@
[Main Settings]
GroupSplitterSizes=192,633
PreviewSplitterSizes=412,220

View File

@ -0,0 +1,280 @@
[ActivityManager]
_k_friendly_name=Диспетчер комнат
switch-to-activity-779ac4a6-f9d4-42fe-b314-de165780e7de=none,none,Переключиться на комнату «Начальная комната»
[KDE Keyboard Layout Switcher]
Switch to Next Keyboard Layout=Meta+Alt+K,none,Выбрать следующую раскладку клавиатуры
_k_friendly_name=Переключение раскладки клавиатуры
[kaccess]
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Включить/выключить зачитывание с экрана
_k_friendly_name=Специальные возможности
[kcm_touchpad]
Disable Touchpad=Touchpad Off,Touchpad Off,Выключить сенсорную панель
Enable Touchpad=Touchpad On,Touchpad On,Включить сенсорную панель
Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель
_k_friendly_name=Сенсорная панель
[kded5]
Show System Activity=Ctrl+Esc,Ctrl+Esc,Показать активность системы
_k_friendly_name=KDE Daemon
display=Display\tMeta+P,Display\tMeta+P,Сменить экран
[khotkeys]
_k_friendly_name=Служба пользовательских комбинаций клавиш
{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск
[kmix]
_k_friendly_name=Громкость
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона
decrease_volume=Volume Down,Volume Down,Уменьшить громкость
increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Увеличить громкость микрофона
increase_volume=Volume Up,Volume Up,Увеличить громкость
mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Выключить микрофон
mute=Volume Mute,Volume Mute,Выключить звук
[ksmserver]
Halt Without Confirmation=none,,Выключить компьютер без подтверждения
Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Lock Session
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Завершить сеанс
Log Out Without Confirmation=none,,Завершить сеанс без подтверждения
Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения
_k_friendly_name=Session Management
[kwin]
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания
Decrease Opacity=none,,Уменьшить непрозрачность окна на 5%
Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон
Expose=Ctrl+F9,Ctrl+F9,Показать все окна с текущего рабочего стола
ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Показать все окна со всех рабочих столов
ExposeClass=Ctrl+F7,Ctrl+F7,Показать окна одного класса
ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола
Increase Opacity=none,,Увеличить непрозрачность окна на 5%
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно
MoveMouseToCenter=Meta+F6,Meta+F6,Переместить мышь в центр
MoveMouseToFocus=Meta+F5,Meta+F5,Переместить мышь в фокус ввода
MoveZoomDown=none,none,Переместить увеличенную область вниз
MoveZoomLeft=none,none,Переместить увеличенную область влево
MoveZoomRight=none,none,Переместить увеличенную область вправо
MoveZoomUp=none,none,Переместить увеличенную область вверх
Overview=Meta+W,Meta+W,Включить или отключить режим обзора
Setup Window Shortcut=none,,Задать комбинацию клавиш для переключения в это окно
Show Desktop=Meta+D,Meta+D,Взглянуть на рабочий стол
ShowDesktopGrid=Meta+F8,Meta+F8,Показать все рабочие столы
Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Приостановить композитное расширение
Switch One Desktop Down=none,Meta+Ctrl+Down,Переключиться на один рабочий стол вниз
Switch One Desktop Up=none,Meta+Ctrl+Up,Переключиться на один рабочий стол вверх
Switch One Desktop to the Left=none,Meta+Ctrl+Left,Переключиться на один рабочий стол влево
Switch One Desktop to the Right=none,Meta+Ctrl+Right,Переключиться на один рабочий стол вправо
Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Переключиться на окно снизу
Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Переключиться на окно слева
Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Переключиться на окно справа
Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Переключиться на окно сверху
Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Переключиться на рабочий стол 1
Switch to Desktop 10=none,,Переключиться на рабочий стол 10
Switch to Desktop 11=none,,Переключиться на рабочий стол 11
Switch to Desktop 12=none,,Переключиться на рабочий стол 12
Switch to Desktop 13=none,,Переключиться на рабочий стол 13
Switch to Desktop 14=none,,Переключиться на рабочий стол 14
Switch to Desktop 15=none,,Переключиться на рабочий стол 15
Switch to Desktop 16=none,,Переключиться на рабочий стол 16
Switch to Desktop 17=none,,Переключиться на рабочий стол 17
Switch to Desktop 18=none,,Переключиться на рабочий стол 18
Switch to Desktop 19=none,,Переключиться на рабочий стол 19
Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Переключиться на рабочий стол 2
Switch to Desktop 20=none,,Переключиться на рабочий стол 20
Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Переключиться на рабочий стол 3
Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Переключиться на рабочий стол 4
Switch to Desktop 5=none,,Переключиться на рабочий стол 5
Switch to Desktop 6=none,,Переключиться на рабочий стол 6
Switch to Desktop 7=none,,Переключиться на рабочий стол 7
Switch to Desktop 8=none,,Переключиться на рабочий стол 8
Switch to Desktop 9=none,,Переключиться на рабочий стол 9
Switch to Next Desktop=none,,Переключиться на следующий рабочий стол
Switch to Next Screen=none,,Переключиться на следующий экран
Switch to Previous Desktop=none,,Переключиться на предыдущий рабочий стол
Switch to Previous Screen=none,,Переключиться на предыдущий экран
Switch to Screen 0=none,,Переключиться на экран 0
Switch to Screen 1=none,,Переключиться на экран 1
Switch to Screen 2=none,,Переключиться на экран 2
Switch to Screen 3=none,,Переключиться на экран 3
Switch to Screen 4=none,,Переключиться на экран 4
Switch to Screen 5=none,,Переключиться на экран 5
Switch to Screen 6=none,,Переключиться на экран 6
Switch to Screen 7=none,,Переключиться на экран 7
Switch to Screen Above=none,,Переключиться на экран выше
Switch to Screen Below=none,,Переключиться на экран ниже
Switch to Screen to the Left=none,,Переключиться на экран слева
Switch to Screen to the Right=none,,Переключиться на экран справа
Toggle Night Color=none,none,Включить или отключить ночную цветовую схему
Toggle Window Raise/Lower=none,,Переключить передний/задний план
Walk Through Desktop List=none,,По списку рабочих столов вперёд
Walk Through Desktop List (Reverse)=none,,По списку рабочих столов назад
Walk Through Desktops=none,,На один рабочий стол вперёд
Walk Through Desktops (Reverse)=none,,На один рабочий стол назад
Walk Through Windows=Alt+Tab,Alt+Tab,На одно окно вперёд
Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Backtab,На одно окно назад
Walk Through Windows Alternative=none,,На одно окно вперёд (альтернативный режим)
Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим)
Walk Through Windows of Current Application=Alt+`,Alt+`,На одно окно вперёд текущего приложения
Walk Through Windows of Current Application (Reverse)=Alt+~,Alt+~,На одно окно назад текущего приложения
Walk Through Windows of Current Application Alternative=none,,На одно окно вперёд текущего приложения (альтернативный режим)
Walk Through Windows of Current Application Alternative (Reverse)=none,,На одно окно назад текущего приложения (альтернативный режим)
Window Above Other Windows=none,,Поместить окно на передний план
Window Below Other Windows=none,,Поместить окно на задний план
Window Close=Alt+F4,Alt+F4,Закрыть окно
Window Fullscreen=none,,Распахнуть окно на весь экран
Window Grow Horizontal=none,,Распахнуть окно по горизонтали
Window Grow Vertical=none,,Распахнуть окно по вертикали
Window Lower=none,,Опустить окно
Window Maximize=Meta+PgUp,Meta+PgUp,Распахнуть окно
Window Maximize Horizontal=none,,Распахнуть окно по горизонтали
Window Maximize Vertical=none,,Распахнуть окно по вертикали
Window Minimize=Meta+PgDown,Meta+PgDown,Свернуть окно
Window Move=none,,Переместить окно
Window Move Center=none,,Переместить окно в центр
Window No Border=none,,Скрыть или показать заголовок и границы окна
Window On All Desktops=none,,Поддерживать окно на всех рабочих столах
Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Окно на один рабочий стол вниз
Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Окно на один рабочий стол вверх
Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Окно на один рабочий стол влево
Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Окно на один рабочий стол вправо
Window One Screen Down=none,,Window One Screen Down
Window One Screen Up=none,,Window One Screen Up
Window One Screen to the Left=none,,Window One Screen to the Left
Window One Screen to the Right=none,,Window One Screen to the Right
Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном
Window Pack Down=none,,Переместить окно вниз
Window Pack Left=none,,Переместить окно влево
Window Pack Right=none,,Переместить окно вправо
Window Pack Up=none,,Переместить окно вверх
Window Quick Tile Bottom=Meta+Down,Meta+Down,Распахнуть окно на нижнюю половину экрана
Window Quick Tile Bottom Left=none,,Распахнуть окно на левую нижнюю четверть экрана
Window Quick Tile Bottom Right=none,,Распахнуть окно на правую нижнюю четверть экрана
Window Quick Tile Left=Meta+Left,Meta+Left,Распахнуть окно на левую половину экрана
Window Quick Tile Right=Meta+Right,Meta+Right,Распахнуть окно на правую половину экрана
Window Quick Tile Top=Meta+Up,Meta+Up,Распахнуть окно на верхнюю половину экрана
Window Quick Tile Top Left=none,,Распахнуть окно на левую верхнюю четверть экрана
Window Quick Tile Top Right=none,,Распахнуть окно на правую верхнюю четверть экрана
Window Raise=none,,Поднять окно
Window Resize=none,,Изменить размер окна
Window Shade=none,,Свернуть окно в заголовок
Window Shrink Horizontal=none,,Сжать окно по горизонтали
Window Shrink Vertical=none,,Сжать окно по вертикали
Window to Desktop 1=none,,Переместить окно на рабочий стол 1
Window to Desktop 10=none,,Переместить окно на рабочий стол 10
Window to Desktop 11=none,,Переместить окно на рабочий стол 11
Window to Desktop 12=none,,Переместить окно на рабочий стол 12
Window to Desktop 13=none,,Переместить окно на рабочий стол 13
Window to Desktop 14=none,,Переместить окно на рабочий стол 14
Window to Desktop 15=none,,Переместить окно на рабочий стол 15
Window to Desktop 16=none,,Переместить окно на рабочий стол 16
Window to Desktop 17=none,,Переместить окно на рабочий стол 17
Window to Desktop 18=none,,Переместить окно на рабочий стол 18
Window to Desktop 19=none,,Переместить окно на рабочий стол 19
Window to Desktop 2=none,,Переместить окно на рабочий стол 2
Window to Desktop 20=none,,Переместить окно на рабочий стол 20
Window to Desktop 3=none,,Переместить окно на рабочий стол 3
Window to Desktop 4=none,,Переместить окно на рабочий стол 4
Window to Desktop 5=none,,Переместить окно на рабочий стол 5
Window to Desktop 6=none,,Переместить окно на рабочий стол 6
Window to Desktop 7=none,,Переместить окно на рабочий стол 7
Window to Desktop 8=none,,Переместить окно на рабочий стол 8
Window to Desktop 9=none,,Переместить окно на рабочий стол 9
Window to Next Desktop=none,,Переместить окно на следующий рабочий стол
Window to Next Screen=Meta+Shift+Right,Meta+Shift+Right,Переместить окно на следующий экран
Window to Previous Desktop=none,,Переместить окно на предыдущий рабочий стол
Window to Previous Screen=Meta+Shift+Left,Meta+Shift+Left,Переместить окно на предыдущий экран
Window to Screen 0=none,,Переместить окно на экран 0
Window to Screen 1=none,,Переместить окно на экран 1
Window to Screen 2=none,,Переместить окно на экран 2
Window to Screen 3=none,,Переместить окно на экран 3
Window to Screen 4=none,,Переместить окно на экран 4
Window to Screen 5=none,,Переместить окно на экран 5
Window to Screen 6=none,,Переместить окно на экран 6
Window to Screen 7=none,,Переместить окно на экран 7
_k_friendly_name=KWin
view_actual_size=Meta+0,Meta+0,Фактический размер
view_zoom_in=Meta++\tMeta+=,Meta++,Увеличить
view_zoom_out=Meta+-,Meta+-,Уменьшить
[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.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,Запустить без создания снимка экрана
RectangularRegionScreenShot=Meta+Shift+Print,Meta+Shift+Print,Сделать снимок прямоугольной области экрана
WindowUnderCursorScreenShot=Meta+Ctrl+Print,Meta+Ctrl+Print,Создать снимок окна под курсором мыши
_k_friendly_name=Spectacle
_launch=Print,Print,Spectacle
[org_kde_powerdevil]
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры
Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Уменьшить яркость экрана
Hibernate=Hibernate,Hibernate,Перейти в спящий режим
Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Увеличить яркость подсветки клавиатуры
Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Увеличить яркость экрана
PowerDown=Power Down,Power Down,Отключить питание
PowerOff=Power Off,Power Off,Выключить
Sleep=Sleep,Sleep,Перейти в ждущий режим
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры
Turn Off Screen=none,none,Выключить монитор
_k_friendly_name=Управление питанием
[plasmashell]
_k_friendly_name=Plasma
activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач
activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач
activate task manager entry 2=Meta+2,Meta+2,Открыть 2-ю кнопку на панели задач
activate task manager entry 3=Meta+3,Meta+3,Открыть 3-ю кнопку на панели задач
activate task manager entry 4=Meta+4,Meta+4,Открыть 4-ю кнопку на панели задач
activate task manager entry 5=Meta+5,Meta+5,Открыть 5-ю кнопку на панели задач
activate task manager entry 6=Meta+6,Meta+6,Открыть 6-ю кнопку на панели задач
activate task manager entry 7=Meta+7,Meta+7,Открыть 7-ю кнопку на панели задач
activate task manager entry 8=Meta+8,Meta+8,Открыть 8-ю кнопку на панели задач
activate task manager entry 9=Meta+9,Meta+9,Открыть 9-ю кнопку на панели задач
activate widget 27=Alt+F1,none,Сделать виджет «Menu11» активным
clear-history=none,,Очистить журнал буфера обмена
clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Всплывающее меню автоматических действий
cycle-panels=Meta+Alt+P,Meta+Alt+P,Перемещение фокуса ввода с клавиатуры между панелями
cycleNextAction=none,,Следующая запись журнала
cyclePrevAction=none,,Предыдущая запись журнала
edit_clipboard=none,,Редактирование буфера обмена…
manage activities=Meta+Q,Meta+Q,Показать переключатель комнат
next activity=Meta+Tab,none,На одну комнату вперёд
previous activity=Meta+Shift+Tab,none,На одну комнату назад
repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена
show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол
show-barcode=none,,Показать штрихкод…
show-on-mouse-pos=Meta+V,Meta+V,Показать записи на позиции указателя мыши
stop current activity=Meta+S,Meta+S,Прекратить выполнение текущей комнаты
switch to next activity=none,,Переключиться в следующую комнату
switch to previous activity=none,,Переключиться в предыдущую комнату
toggle do not disturb=none,,Включение и отключение режима «Не беспокоить»
[systemsettings.desktop]
_k_friendly_name=Параметры системы
_launch=Tools,Tools,Параметры системы
kcm-kscreen=none,none,Настройка экранов
kcm-lookandfeel=none,none,Оформление рабочей среды
kcm-users=none,none,Пользователи
powerdevilprofilesconfig=none,none,Энергосбережение
screenlocker=none,none,Блокировка экрана

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,2 @@
[$Version]
update_info=disable_kmix.upd:PlasmaVolume_DisableKMixAutostart

View File

@ -0,0 +1,2 @@
[General]
exportsFile=/etc/exports

View File

@ -0,0 +1,21 @@
[Desktop Entry]
DefaultProfile=Melawy.profile
[General]
ConfigVersion=1
[MainWindow]
1920x1080 screen: Height=550
1920x1080 screen: Width=911
1920x1080 screen: XPosition=504
1920x1080 screen: YPosition=258
HDMI-0=HDMI-0
HDMI1=HDMI1
State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAbcBAAAJ+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABQQEAAAkAAAOPAAAB/AAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAASP/////AAAAAAAAAAA=
ToolBarsMovable=Disabled
[TabBar]
TabBarPosition=Top
[UiSettings]
ColorScheme=

View File

@ -0,0 +1,2 @@
[Global plugin config]
manageProfile=false

View File

@ -0,0 +1,2 @@
[PlasmaRunnerManager]
migrated=true

View File

@ -0,0 +1,6 @@
[$Version]
update_info=kscreenlocker.upd:0.1-autolock
[Greeter][Wallpaper][org.kde.image][General]
Image=/usr/share/wallpapers/Melawy Lera Sugar/
PreviewImage=/usr/share/wallpapers/Melawy Lera Sugar/

View File

@ -0,0 +1,23 @@
[$Version]
update_info=ksmserver_update_loginMode_value.upd:ksmserver_update_loginMode_value_default_enum
[LegacySession: saved at previous logout]
count=0
[Session: saved at previous logout]
clientId1=1079b5b561000168366199100002669700004
clientId2=1079b5b561000168366199200002669700006
clientId3=1079b5b561000168189776100002440630004
count=3
program1=/usr/bin/plasma-remotecontrollers
program2=/usr/bin/firewall-applet
program3=/usr/bin/octopi-notifier
restartCommand1=/usr/bin/plasma-remotecontrollers,-session,1079b5b561000168366199100002669700004_1683662261_415306
restartCommand2=/usr/bin/firewall-applet,-session,1079b5b561000168366199200002669700006_1683662261_415324,-name,firewall-applet
restartCommand3=/usr/bin/octopi-notifier,-session,1079b5b561000168189776100002440630004_1683662261_415445
restartStyleHint1=0
restartStyleHint2=0
restartStyleHint3=0
userId1=melawy
userId2=melawy
userId3=melawy

View File

@ -0,0 +1,2 @@
[KSplash]
Theme=com.github.Melawy.Lera-Sugar.desktop

View File

@ -0,0 +1,4 @@
[TimeZones]
LocalZone=Asia/Yekaterinburg
ZoneinfoDir=/usr/share/zoneinfo
Zonetab=/usr/share/zoneinfo/zone.tab

View File

@ -0,0 +1,34 @@
[$Version]
update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js,kwin.upd:auto-bordersize,kwin.upd:animation-speed,kwin.upd:desktop-grid-click-behavior,kwin.upd:no-swap-encourage,kwin.upd:make-translucency-effect-disabled-by-default,kwin.upd:remove-flip-switch-effect,kwin.upd:remove-cover-switch-effect,kwin.upd:remove-cubeslide-effect,kwin.upd:remove-xrender-backend,kwin.upd:enable-scale-effect-by-default,kwin.upd:overview-group-plugin-id,kwin.upd:animation-speed-cleanup,kwin.upd:replace-cascaded-zerocornered
[Desktops]
Id_1=171a6817-b917-40ee-bb07-24d2f6a69bfd
Id_2=d3e3adfc-3116-4188-89f7-a2b9970b3dc1
Id_3=e14fda25-47c6-4874-8ec0-88c2c16b98d7
Id_4=5c50d145-39b8-4886-a8e6-76dea325e1de
Number=4
Rows=2
[Plugins]
desktopchangeosdEnabled=true
kwin4_effect_fadedesktopEnabled=true
slideEnabled=false
[TabBox]
LayoutName=coverswitch
[Tiling]
padding=4
[Tiling][018d7cd5-b348-59b5-8b4e-b3739df928e6]
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
[Tiling][21de3493-a5ab-5673-b664-fd3590401e4b]
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
[Windows]
RollOverDesktops=true
[org.kde.kdecoration2]
library=org.kde.kwin.aurorae
theme=__aurorae__svg__Colloid-dark-round

View File

@ -0,0 +1,2 @@
[$Version]
update_info=kwinrules.upd:replace-placement-string-to-enum,kwinrules.upd:use-virtual-desktop-ids

View File

@ -0,0 +1,6 @@
[$Version]
update_info=kxkb.upd:remove-empty-lists,kxkb.upd:add-back-resetoptions,kxkb_variants.upd:split-variants
[Layout]
Options=grp:alt_shift_toggle,terminate:ctrl_alt_bksp
ResetOldOptions=true

View File

@ -0,0 +1,5 @@
[Style]
DolphinSidebarOpacity=90
TabDrawHighlight=true
ToolBarDrawItemSeparator=true
UnifiedTabBarKonsole=true

View File

@ -0,0 +1,153 @@
[Midnight-Commander]
verbose=true
shell_patterns=true
auto_save_setup=true
preallocate_space=false
auto_menu=false
use_internal_view=true
use_internal_edit=true
clear_before_exec=true
confirm_delete=true
confirm_overwrite=true
confirm_execute=false
confirm_history_cleanup=true
confirm_exit=false
confirm_directory_hotlist_delete=false
confirm_view_dir=false
safe_delete=false
safe_overwrite=false
use_8th_bit_as_meta=false
mouse_move_pages_viewer=true
mouse_close_dialog=false
fast_refresh=false
drop_menus=false
wrap_mode=true
old_esc_mode=true
cd_symlinks=true
show_all_if_ambiguous=false
use_file_to_guess_type=true
alternate_plus_minus=false
only_leading_plus_minus=true
show_output_starts_shell=false
xtree_mode=false
file_op_compute_totals=true
classic_progressbar=true
use_netrc=true
ftpfs_always_use_proxy=false
ftpfs_use_passive_connections=true
ftpfs_use_passive_connections_over_proxy=false
ftpfs_use_unix_list_options=true
ftpfs_first_cd_then_ls=true
ignore_ftp_chattr_errors=true
editor_fill_tabs_with_spaces=false
editor_return_does_auto_indent=true
editor_backspace_through_tabs=false
editor_fake_half_tabs=true
editor_option_save_position=true
editor_option_auto_para_formatting=false
editor_option_typewriter_wrap=false
editor_edit_confirm_save=true
editor_syntax_highlighting=true
editor_persistent_selections=true
editor_drop_selection_on_copy=true
editor_cursor_beyond_eol=false
editor_cursor_after_inserted_block=false
editor_visible_tabs=true
editor_visible_spaces=true
editor_line_state=false
editor_simple_statusbar=false
editor_check_new_line=false
editor_show_right_margin=false
editor_group_undo=false
editor_state_full_filename=false
editor_ask_filename_before_edit=false
nice_rotating_dash=true
shadows=true
mcview_remember_file_position=false
auto_fill_mkdir_name=true
copymove_persistent_attr=true
pause_after_run=1
mouse_repeat_rate=100
double_click_speed=250
old_esc_mode_timeout=1000000
max_dirt_limit=10
num_history_items_recorded=60
vfs_timeout=60
ftpfs_directory_timeout=900
ftpfs_retry_seconds=30
editor_tab_spacing=8
editor_word_wrap_line_length=72
editor_option_save_mode=0
editor_backup_extension=~
editor_filesize_threshold=64M
editor_stop_format_chars=-+*\\,.;:&>
mcview_eof=
skin=modarin256-defbg
filepos_max_saved_entries=1024
fish_directory_timeout=900
[Layout]
output_lines=0
left_panel_size=118
top_panel_size=0
message_visible=true
keybar_visible=true
xterm_title=true
command_prompt=true
menubar_visible=true
free_space=true
horizontal_split=false
vertical_equal=true
horizontal_equal=true
[Misc]
timeformat_recent=%b %e %H:%M
timeformat_old=%b %e %Y
ftp_proxy_host=gate
ftpfs_password=anonymous@
display_codepage=UTF-8
source_codepage=Other_8_bit
autodetect_codeset=
clipboard_store=
clipboard_paste=
spell_language=en
[Colors]
base_color=
xterm-256color=
color_terminals=
linux=
alacritty=
[Panels]
show_mini_info=true
kilobyte_si=false
mix_all_files=false
show_backups=true
show_dot_files=true
fast_reload=false
fast_reload_msg_shown=false
mark_moves_down=true
reverse_files_only=true
auto_save_setup_panels=true
navigate_with_arrows=false
panel_scroll_pages=true
panel_scroll_center=false
mouse_move_pages=true
filetype_mode=true
permission_mode=false
torben_fj_mode=false
quick_search_mode=2
select_flags=6
simple_swap=false
[Panelize]
Изменённые файлы под контролем git=git ls-files --modified
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print

View File

@ -0,0 +1,41 @@
[New Left Panel]
display=listing
reverse=false
case_sensitive=true
exec_first=false
sort_order=name
list_mode=full
brief_cols=2
user_format=half type name | size | mtime | mode | perm | owner | group
user_status0=half type name | size | perm
user_status1=half type name | size | mtime
user_mini_status=true
list_format=user
user_status2=half type name | size | perm
user_status3=half type name | size | perm
filter_flags=7
[New Right Panel]
display=listing
reverse=false
case_sensitive=true
exec_first=false
sort_order=name
list_mode=full
brief_cols=2
user_format=half type name | size | mtime | mode | perm | owner | group
user_status0=half type name | size | perm
user_status1=half type name | size | mtime
user_mini_status=true
list_format=user
user_status2=half type name | size | perm
user_status3=half type name | size | perm
filter_flags=7
[Dirs]
current_is_left=false
other_dir=/home/lera

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Arch Linux: Recent news updates</title><link>https://archlinux.org/news/</link><description>The latest and greatest news from the Arch Linux distribution.</description><atom:link href="https://archlinux.org/feeds/news/" rel="self"/><language>en-us</language><lastBuildDate>Sun, 12 Feb 2023 14:54:22 +0000</lastBuildDate><item><title>Switch to the base-devel meta package requires manual intervention</title><link>https://archlinux.org/news/switch-to-the-base-devel-meta-package-requires-manual-intervention/</link><description>&lt;p&gt;On February 2nd, the &lt;code&gt;base-devel&lt;/code&gt; package group has been replaced by a meta package of the same name.&lt;br /&gt;
If you installed the &lt;code&gt;base-devel&lt;/code&gt; package group prior to this date, explicitly re-install it to get the new &lt;code&gt;base-devel&lt;/code&gt; package installed on the system: &lt;/p&gt;
&lt;p&gt;&lt;code&gt;pacman -Syu base-devel&lt;/code&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robin Candau</dc:creator><pubDate>Sun, 12 Feb 2023 14:43:35 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2023-02-12:/news/switch-to-the-base-devel-meta-package-requires-manual-intervention/</guid></item><item><title>PHP 8.2 update and introduction of legacy branch</title><link>https://archlinux.org/news/php-82-update-and-introduction-of-legacy-branch/</link><description>&lt;p&gt;The &lt;a href="https://archlinux.org/packages/extra/x86_64/php/"&gt;php&lt;/a&gt; packages have been updated to the latest version 8.2. In
addition to this, a new set of &lt;a href="https://archlinux.org/packages/extra/x86_64/php-legacy/"&gt;php-legacy&lt;/a&gt; packages have been
introduced. These will follow the oldest but still &lt;a href="https://www.php.net/supported-versions.php"&gt;actively supported
PHP&lt;/a&gt; branch. This enables users to install the latest version but also
introduces the option to use third party applications that might rely
on an older version. Both branches will be kept up to date following
our rolling release model. &lt;code&gt;php&lt;/code&gt; and &lt;code&gt;php-legacy&lt;/code&gt; can be installed at the
same time as the latter uses a &lt;code&gt;-legacy&lt;/code&gt; suffix for its binaries and
configuration files.&lt;/p&gt;
&lt;p&gt;In addition to this, the &lt;a href="https://archlinux.org/news/php-80-and-php-7-legacy-packages-are-available/"&gt;php7&lt;/a&gt; packages have been removed as they
reached end of life. The &lt;code&gt;imap&lt;/code&gt; extension will no longer be provided as
it relies on the &lt;code&gt;c-client&lt;/code&gt; library which has been abandoned for many
years.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pierre Schmitz</dc:creator><pubDate>Fri, 13 Jan 2023 14:46:04 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2023-01-13:/news/php-82-update-and-introduction-of-legacy-branch/</guid></item><item><title>In memory of Jonathon Fernyhough</title><link>https://archlinux.org/news/in-memory-of-jonathon-fernyhough/</link><description>&lt;p&gt;Arch Linux mourns the sudden loss of Jonathon Fernyhough, known in our community as &lt;code&gt;jonathon&lt;/code&gt;, who passed away on Saturday night.&lt;/p&gt;
&lt;p&gt;Jonathon was an active participant and contributor to Arch Linux, several derived distributions, the AUR and through personal repositories. He was enthusiastic, helpful and eager to contribute towards improving the free and open source software community as a whole.&lt;/p&gt;
&lt;p&gt;On behalf of the wider Arch Linux community, our condolences go out to his family and friends.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Morten Linderud</dc:creator><pubDate>Thu, 12 Jan 2023 12:12:16 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2023-01-12:/news/in-memory-of-jonathon-fernyhough/</guid></item><item><title>Removing python2 from the repositories</title><link>https://archlinux.org/news/removing-python2-from-the-repositories/</link><description>&lt;p&gt;Python 2 went &lt;a href="https://www.python.org/doc/sunset-python-2/"&gt;end of life&lt;/a&gt; January 2020. Since then we have been actively cutting down the number of projects depending on &lt;code&gt;python2&lt;/code&gt; in our repositories, and we have finally been able to drop it from our distribution. If you still have &lt;code&gt;python2&lt;/code&gt; installed on your system consider removing it and any python2 package.&lt;/p&gt;
&lt;p&gt;If you still require the python2 package you can keep it around, but please be aware that there will be no security updates. If you need a patched package please consult the AUR, or use an &lt;a href="https://wiki.archlinux.org/title/Unofficial_user_repositories"&gt;unofficial user repository&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jelle van der Waa</dc:creator><pubDate>Fri, 23 Sep 2022 08:42:36 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-09-23:/news/removing-python2-from-the-repositories/</guid></item><item><title>Arch Linux mailing list changes</title><link>https://archlinux.org/news/arch-linux-mailing-list-changes/</link><description>&lt;p&gt;As part of &lt;a href="https://archlinux.org/todo/conversion-of-programs-that-use-python-2-to-python-3/"&gt;dropping Python 2&lt;/a&gt; which is EOL, we have migrated our mailing lists from mailman2 to mailman3.&lt;/p&gt;
&lt;p&gt;Rewriting of the "From" header and subject (to prepend the list name) have been disabled to keep the DKIM signature intact. This means "&lt;a href="https://wiki.archlinux.org/title/General_guidelines#Reply_to_the_mailing_list"&gt;reply to mailing list&lt;/a&gt;" must be used when replying to the list and you may need to update your filters and rules matching the "From" header.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;All existing subscriptions are migrated and you do not need to re-subscribe.&lt;/strong&gt; For managing your subscriptions a new mailman3 account &lt;a href="https://lists.archlinux.org/accounts/signup/"&gt;must be registered&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kristian Klausen</dc:creator><pubDate>Fri, 16 Sep 2022 13:11:30 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-09-16:/news/arch-linux-mailing-list-changes/</guid></item><item><title>Grub bootloader upgrade and configuration incompatibilities</title><link>https://archlinux.org/news/grub-bootloader-upgrade-and-configuration-incompatibilities/</link><description>&lt;p&gt;Recent changes in &lt;code&gt;grub&lt;/code&gt; added a new command option to &lt;code&gt;fwsetup&lt;/code&gt; and changed the
way the command is invoked in the generated boot configuration. Depending on
your system hardware and setup this could cause an unbootable system due to
incompatibilities between the installed bootloader and configuration. After a
&lt;code&gt;grub&lt;/code&gt; package update it is advised to run both, installation and regeneration
of configuration:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;grub-install ...
grub-mkconfig -o /boot/grub/grub.cfg
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For more specific information on &lt;code&gt;grub-install&lt;/code&gt;, please refer to the wiki:
&lt;a href="https://wiki.archlinux.org/title/GRUB#Installation"&gt;GRUB - ArchWiki&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christian Hesse</dc:creator><pubDate>Tue, 30 Aug 2022 20:15:25 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-08-30:/news/grub-bootloader-upgrade-and-configuration-incompatibilities/</guid></item><item><title>wxWidgets 3.2 update may need manual intervention</title><link>https://archlinux.org/news/wxwidgets-32-update-may-need-manual-intervention/</link><description>&lt;p&gt;wxWidgets 3.2 provides a Qt frontend in addition to the GTK3 one, so packages have been renamed from wxgtk-&lt;em&gt; to wxwidgets-&lt;/em&gt;.
The GTK2 frontend is no longer provided. If you have wxgtk2 installed, the upgrade will fail with&lt;/p&gt;
&lt;p&gt;error: failed to prepare transaction (could not satisfy dependencies)
:: removing wxgtk-common breaks dependency 'wxgtk-common' required by wxgtk2&lt;/p&gt;
&lt;p&gt;In such case, uninstall wxgtk2 first and then proceed with the upgrade.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Antonio Rojas</dc:creator><pubDate>Thu, 14 Jul 2022 19:20:15 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-07-14:/news/wxwidgets-32-update-may-need-manual-intervention/</guid></item><item><title>Undone replacement of pipewire-media-session with wireplumber</title><link>https://archlinux.org/news/undone-replacement-of-pipewire-media-session-with-wireplumber/</link><description>&lt;p&gt;Two days ago the &lt;code&gt;wireplumber&lt;/code&gt; package was made to replace &lt;code&gt;pipewire-media-session&lt;/code&gt; as the latter session manager for PipeWire is considered dead upstream and will see no more releases. Unfortunately, this step was premature.&lt;/p&gt;
&lt;p&gt;Our pipewire audio packages (&lt;code&gt;pipewire-alsa&lt;/code&gt;, &lt;code&gt;pipewire-jack&lt;/code&gt; and &lt;code&gt;pipewire-pulse&lt;/code&gt;) ship configuration that prompt media-session to activate PipeWire's audio features. When these packages are not installed and the configuration is missing, PipeWire can be used for screen recording without interfering with ALSA or PulseAudio.&lt;/p&gt;
&lt;p&gt;WirePlumber disregards this mechanism and always configures PipeWire to grab audio devices, meaning users of PulseAudio or bare ALSA experience broken audio.&lt;/p&gt;
&lt;p&gt;The replacement has been reverted while we attempt to look for a better solution switching to WirePlumber. If you are currently not using PipeWire for audio and &lt;code&gt;wireplumber&lt;/code&gt; got installed on your system, please reinstall &lt;code&gt;pipewire-media-session&lt;/code&gt; and reboot to restore audio functionality.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;pacman -Syu pipewire-media-session
&lt;/code&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan Alexander Steffens</dc:creator><pubDate>Thu, 12 May 2022 19:48:50 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-05-12:/news/undone-replacement-of-pipewire-media-session-with-wireplumber/</guid></item><item><title>QEMU &gt;= 7.0.0 changes split package setup</title><link>https://archlinux.org/news/qemu-700-changes-split-package-setup/</link><description>&lt;p&gt;With the update to qemu 7.0.0 the package has been turned into a more
fine grained split package utilizing meta packages.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;qemu&lt;/code&gt; package is now virtually provided by the meta packages
&lt;code&gt;qemu-base&lt;/code&gt;, &lt;code&gt;qemu-desktop&lt;/code&gt; and &lt;code&gt;qemu-full&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;The functionality of &lt;code&gt;qemu&lt;/code&gt; prior to 7.0.0 is replaced by
&lt;code&gt;qemu-desktop&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;The functionality of &lt;code&gt;qemu-headless&lt;/code&gt; is replaced by
&lt;code&gt;qemu-base&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;The functionality of &lt;code&gt;qemu-arch-extra&lt;/code&gt; and &lt;code&gt;qemu-headless-arch-extra&lt;/code&gt;
is replaced by &lt;code&gt;qemu-emulators-full&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;The meta package &lt;code&gt;qemu-full&lt;/code&gt; provides all QEMU related
packages (excluding &lt;code&gt;qemu-guest-agent&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Runge</dc:creator><pubDate>Mon, 09 May 2022 10:35:57 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-05-09:/news/qemu-700-changes-split-package-setup/</guid></item><item><title>Keycloak 17.0.1-2 update requires manual reconfiguration</title><link>https://archlinux.org/news/keycloak-1701-2-update-requires-manual-reconfiguration/</link><description>&lt;p&gt;The &lt;code&gt;keycloak&lt;/code&gt; package prior to version 17.0.1-2 was running with WildFly server. Since upstream officially moved to &lt;a href="https://www.keycloak.org/2020/12/first-keycloak-x-release.adoc"&gt;Quarkus distribution&lt;/a&gt;, Arch Linux follows this approach. This means some manual intervention is required for the upgrade.&lt;/p&gt;
&lt;p&gt;The configuration needs to be adjusted from the old &lt;code&gt;.xml&lt;/code&gt; format to the new &lt;code&gt;/etc/keycloak/keycloak.conf&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Prior to the upgrade, stop the keycloak service, upgrade the package and migrate the configuration before starting:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;systemctl stop keycloak.service
pacman -Syu keycloak
# migrate configuration /etc/keycloak/keycloak.conf
systemctl start keycloak.service
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;See Keycloak &lt;a href="https://www.keycloak.org/migration/migrating-to-quarkus"&gt;migration docs&lt;/a&gt; and Keycloak Quarkus &lt;a href="https://www.keycloak.org/server/configuration"&gt;server docs&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leonidas Spyropoulos</dc:creator><pubDate>Fri, 25 Mar 2022 14:25:57 +0000</pubDate><guid isPermaLink="false">tag:archlinux.org,2022-03-25:/news/keycloak-1701-2-update-requires-manual-reconfiguration/</guid></item></channel></rss>

View File

@ -0,0 +1,38 @@
[General]
Aur_Builddir=/var/tmp
Aur_No_Confirm_Param=true
Aur_No_Edit_Param=true
Aur_Tool_Name=paru
Backend=alpm
CheckUpdatesHour=-1
CheckUpdatesInterval=-2
Current_Tab_Index=4
Distro_RSS_Url=https://archlinux.org/feeds/news/
Instant_Search=true
LastCheckUpdatesTime=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x89\x80\x3\xc7\t\xa9\0)
OptionalDeps_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\0\0\0\0\0\0\a\x80\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5)
PackageList_Ordered_Col=1
PackageList_Sort_Order=0
Package_Build_Date_Column_Width=120
Package_Download_Size_Column_Width=795
Package_Icon_Column_Width=49
Package_Install_Date_Column_Width=140
Package_Install_Reason_Column_Width=120
Package_Installed_Size_Column_Width=120
Package_Licenses_Column_Width=250
Package_Name_Column_Width=400
Package_Repository_Column_Width=150
Package_Version_Column_Width=260
Panel_Organizing=30
Search_Outdated_Aur_Packages=true
Show_Groups_Panel=false
Show_Package_Build_Date_Column=true
Show_Package_Install_Date_Column=true
Show_Package_Install_Reason_Column=true
Show_Package_Installed_Size_Column=true
Show_Package_Licenses_Column=true
Splitter_Horizontal_State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc8\0\0\0\xeb\x1\xff\xff\xff\xff\x1\0\0\0\x2\0)
Transaction_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\0\0\0\0\0\0\a\x80\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l)
Use_Alternate_Row_Color=true
Use_Default_App_Icon=true
Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a)

View File

@ -0,0 +1,2 @@
[$Version]
update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations

View File

@ -0,0 +1,2 @@
[Formats]
LANG=ru_RU.UTF-8

View File

@ -0,0 +1,205 @@
[ActionPlugins][0]
RightButton;NoModifier=org.kde.contextmenu
wheel:Vertical;NoModifier=org.kde.switchdesktop
[ActionPlugins][1]
RightButton;NoModifier=org.kde.contextmenu
[Containments][1]
ItemGeometries-1920x1080=
ItemGeometriesHorizontal=
activityId=779ac4a6-f9d4-42fe-b314-de165780e7de
formfactor=0
immutability=1
lastScreen=0
location=0
plugin=org.kde.plasma.folder
wallpaperplugin=org.kde.image
[Containments][1][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][1][General]
ToolBoxButtonState=topcenter
ToolBoxButtonX=304
[Containments][1][Wallpaper][org.kde.image][General]
Image=/usr/share/wallpapers/Melawy Lera Sugar/
SlidePaths=/usr/share/wallpapers/
[Containments][2]
activityId=
formfactor=2
immutability=1
lastScreen=0
location=4
plugin=org.kde.panel
wallpaperplugin=org.kde.image
[Containments][2][Applets][22]
immutability=1
plugin=org.kde.plasma.digitalclock
[Containments][2][Applets][23]
immutability=1
plugin=org.kde.plasma.showdesktop
[Containments][2][Applets][27]
immutability=1
plugin=com.github.adhec.Menu11
[Containments][2][Applets][27][Configuration]
PreloadWeight=100
popupHeight=510
popupWidth=691
[Containments][2][Applets][27][Configuration][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][2][Applets][27][Configuration][General]
appNameFormat=2
downIconsLock=true
favoritesPortedToKAstats=true
menuPosition=1
numberColumns=7
numberRows=4
reduceIconSizeFooter=true
reduceIconSizeUserProfile=false
showDescription=true
[Containments][2][Applets][27][Configuration][Shortcuts]
global=Alt+F1
[Containments][2][Applets][27][Shortcuts]
global=Alt+F1
[Containments][2][Applets][4]
immutability=1
plugin=org.kde.plasma.pager
[Containments][2][Applets][5]
immutability=1
plugin=org.kde.plasma.icontasks
[Containments][2][Applets][5][Configuration][General]
launchers=applications:systemsettings.desktop,preferred://filemanager,preferred://browser
[Containments][2][Applets][6]
immutability=1
plugin=org.kde.plasma.marginsseparator
[Containments][2][Applets][7]
immutability=1
plugin=org.kde.plasma.systemtray
[Containments][2][Applets][7][Configuration]
PreloadWeight=60
SystrayContainmentId=8
[Containments][2][ConfigDialog]
DialogHeight=74
DialogWidth=1920
[Containments][2][General]
AppletOrder=27;4;5;6;7;22;23
[Containments][8]
activityId=
formfactor=2
immutability=1
lastScreen=0
location=4
plugin=org.kde.plasma.private.systemtray
popupHeight=432
popupWidth=432
wallpaperplugin=org.kde.image
[Containments][8][Applets][10]
immutability=1
plugin=org.kde.plasma.devicenotifier
[Containments][8][Applets][11]
immutability=1
plugin=org.kde.plasma.manage-inputmethod
[Containments][8][Applets][12]
immutability=1
plugin=org.kde.plasma.notifications
[Containments][8][Applets][13]
immutability=1
plugin=org.kde.kdeconnect
[Containments][8][Applets][14]
immutability=1
plugin=org.kde.kscreen
[Containments][8][Applets][15]
immutability=1
plugin=org.kde.plasma.keyboardlayout
[Containments][8][Applets][16]
immutability=1
plugin=org.kde.plasma.volume
[Containments][8][Applets][16][Configuration][General]
migrated=true
[Containments][8][Applets][17]
immutability=1
plugin=org.kde.plasma.printmanager
[Containments][8][Applets][18]
immutability=1
plugin=org.kde.plasma.keyboardindicator
[Containments][8][Applets][19]
immutability=1
plugin=org.kde.plasma.pass
[Containments][8][Applets][20]
immutability=1
plugin=org.kde.plasma.vault
[Containments][8][Applets][21]
immutability=1
plugin=com.github.Melawy.ArchUpdate
[Containments][8][Applets][21][Configuration]
PreloadWeight=55
[Containments][8][Applets][21][Configuration][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][8][Applets][21][Configuration][General]
commandForUpgrade=konsole --separate -e "paru -Syu --needed --noconfirm"
[Containments][8][Applets][24]
immutability=1
plugin=org.kde.plasma.nightcolorcontrol
[Containments][8][Applets][25]
immutability=1
plugin=org.kde.plasma.battery
[Containments][8][Applets][26]
immutability=1
plugin=org.kde.plasma.networkmanagement
[Containments][8][Applets][28]
immutability=1
plugin=org.kde.plasma.bluetooth
[Containments][8][Applets][9]
immutability=1
plugin=org.kde.plasma.clipboard
[Containments][8][General]
extraItems=org.kde.plasma.bluetooth,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.kdeconnect,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.plasma.pass,com.github.Melawy.ArchUpdate
knownItems=org.kde.plasma.bluetooth,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.kdeconnect,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol,org.kde.plasma.pass,com.github.Melawy.ArchUpdate
[ScreenMapping]
itemsOnDisabledScreens=

View File

@ -0,0 +1,5 @@
[Theme]
name=Melawy
[Wallpapers]
usersWallpapers=

View File

@ -0,0 +1,12 @@
[PlasmaTransientsConfig]
PreloadWeight=92
[PlasmaViews][Panel 2]
alignment=132
floating=1
[PlasmaViews][Panel 2][Defaults]
thickness=36
[Updates]
performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js

View File

@ -0,0 +1,2 @@
[BatteryManagement]
BatteryCriticalAction=1

View File

@ -0,0 +1,59 @@
[AC]
icon=battery-charging
[AC][DPMSControl]
idleTime=600
lockBeforeTurnOff=0
[AC][DimDisplay]
idleTime=300000
[AC][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
[AC][SuspendSession]
idleTime=900000
suspendType=1
[Battery]
icon=battery-060
[Battery][DPMSControl]
idleTime=300
lockBeforeTurnOff=0
[Battery][DimDisplay]
idleTime=120000
[Battery][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
[Battery][SuspendSession]
idleTime=600000
suspendType=1
[LowBattery]
icon=battery-low
[LowBattery][BrightnessControl]
value=30
[LowBattery][DPMSControl]
idleTime=120
lockBeforeTurnOff=0
[LowBattery][DimDisplay]
idleTime=60000
[LowBattery][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
[LowBattery][SuspendSession]
idleTime=300000
suspendType=1

View File

@ -0,0 +1,2 @@
[$Version]
update_info=smb4k_3_0_0.upd:Smb4K_3.0.0

View File

@ -0,0 +1,2 @@
[$Version]
update_info=spectacle_clipboard.upd:clipboard-settings-change,spectacle_rememberregion.upd:spectacle-migrate-rememberregion

View File

@ -0,0 +1,8 @@
[MainWindow]
1920x1080 screen: XPosition=574
1920x1080 screen: YPosition=180
HDMI-0=HDMI-0
HDMI1=HDMI1
MenuBar=Disabled
State=AAAA/wAAAAD9AAAAAAAAA/wAAAK8AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA
ToolBarsMovable=Disabled

View File

@ -0,0 +1,15 @@
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/Рабочий стол"
XDG_DOWNLOAD_DIR="$HOME/Загрузки"
XDG_TEMPLATES_DIR="$HOME/Шаблоны"
XDG_PUBLICSHARE_DIR="$HOME/Общедоступные"
XDG_DOCUMENTS_DIR="$HOME/Документы"
XDG_MUSIC_DIR="$HOME/Музыка"
XDG_PICTURES_DIR="$HOME/Изображения"
XDG_VIDEOS_DIR="$HOME/Видео"

View File

@ -0,0 +1 @@
ru_RU

View File

@ -0,0 +1,14 @@
Net/ThemeName "Colloid-Dark"
Gdk/UnscaledDPI 98304
Gdk/WindowScalingFactor 1
Gtk/EnableAnimations 1
Gtk/DecorationLayout "icon:minimize,maximize,close"
Gtk/PrimaryButtonWarpsSlider 0
Gtk/ToolbarStyle 3
Gtk/MenuImages 1
Gtk/ButtonImages 1
Gtk/CursorThemeSize 24
Gtk/CursorThemeName "Qogir-dark"
Net/IconThemeName "Colloid-dark"
Gtk/FontName "Noto Sans, 10"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>~/.fonts</dir>
</fontconfig>

Some files were not shown because too many files have changed in this diff Show More