diff --git a/core/calamares/PKGBUILD b/core/calamares/PKGBUILD index 74c8121..15b7ec1 100644 --- a/core/calamares/PKGBUILD +++ b/core/calamares/PKGBUILD @@ -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") diff --git a/core/melawy-skel-liveuser/.gitignore b/core/melawy-skel-liveuser/.gitignore new file mode 100644 index 0000000..e042726 --- /dev/null +++ b/core/melawy-skel-liveuser/.gitignore @@ -0,0 +1,6 @@ +*.pkg.tar +*.pkg.tar.* +*.zst +*.zst.* +pkg/ +.idea/ diff --git a/core/melawy-skel-liveuser/PKGBUILD b/core/melawy-skel-liveuser/PKGBUILD new file mode 100755 index 0000000..907e357 --- /dev/null +++ b/core/melawy-skel-liveuser/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Valeria Fadeeva + +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 +} diff --git a/core/melawy-skel-liveuser/src/etc/skel/.Xauthority b/core/melawy-skel-liveuser/src/etc/skel/.Xauthority new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.Xauthority @@ -0,0 +1 @@ + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.Xresources b/core/melawy-skel-liveuser/src/etc/skel/.Xresources new file mode 100755 index 0000000..2b423da --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.Xresources @@ -0,0 +1,2 @@ +Xcursor.theme: Qogir +Xcursor.size: 16 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.bash_logout b/core/melawy-skel-liveuser/src/etc/skel/.bash_logout new file mode 100644 index 0000000..0e4e4f1 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.bash_logout @@ -0,0 +1,3 @@ +# +# ~/.bash_logout +# diff --git a/core/melawy-skel-liveuser/src/etc/skel/.bash_profile b/core/melawy-skel-liveuser/src/etc/skel/.bash_profile new file mode 100644 index 0000000..5545f00 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.bash_profile @@ -0,0 +1,5 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/core/melawy-skel-liveuser/src/etc/skel/.bashrc b/core/melawy-skel-liveuser/src/etc/skel/.bashrc new file mode 100755 index 0000000..8b61441 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.bashrc @@ -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 +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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/Trolltech.conf b/core/melawy-skel-liveuser/src/etc/skel/.config/Trolltech.conf new file mode 100644 index 0000000..5268b3a --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/Trolltech.conf @@ -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" diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/akregatorrc b/core/melawy-skel-liveuser/src/etc/skel/.config/akregatorrc new file mode 100644 index 0000000..5cf5a54 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/akregatorrc @@ -0,0 +1,2 @@ +[$Version] +update_info=fonts_akregator.upd:Plasma_Fonts_Akregator diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/autostart/calamares.desktop b/core/melawy-skel-liveuser/src/etc/skel/.config/autostart/calamares.desktop new file mode 100644 index 0000000..29a3266 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/autostart/calamares.desktop @@ -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ệ thống +Icon[vi]=calamares +GenericName[vi]=Bộ cài đặt hệ thống +Comment[vi]=Calamares — Bộ cài đặt hệ thống +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 ── 系統安裝程式 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/baloofileinformationrc b/core/melawy-skel-liveuser/src/etc/skel/.config/baloofileinformationrc new file mode 100644 index 0000000..6d1c1d4 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/baloofileinformationrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/baloofilerc b/core/melawy-skel-liveuser/src/etc/skel/.config/baloofilerc new file mode 100644 index 0000000..3774c3b --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/baloofilerc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/bluedevilglobalrc b/core/melawy-skel-liveuser/src/etc/skel/.config/bluedevilglobalrc new file mode 100644 index 0000000..c9b6552 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/bluedevilglobalrc @@ -0,0 +1,2 @@ +[Devices] +connectedDevices= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/dconf/user b/core/melawy-skel-liveuser/src/etc/skel/.config/dconf/user new file mode 100644 index 0000000..61e5ce8 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.config/dconf/user differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/dolphinrc b/core/melawy-skel-liveuser/src/etc/skel/.config/dolphinrc new file mode 100644 index 0000000..6565544 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/dolphinrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-active.svg new file mode 100644 index 0000000..e9ae9d5 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-active.svg @@ -0,0 +1,28 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-active.svg new file mode 100644 index 0000000..4d0aae2 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-active.svg @@ -0,0 +1,28 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-hover.svg new file mode 100644 index 0000000..b11a331 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-hover.svg @@ -0,0 +1,28 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-normal.svg new file mode 100644 index 0000000..c91c562 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-backdrop-normal.svg @@ -0,0 +1,22 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-hover.svg new file mode 100644 index 0000000..e56ea23 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-hover.svg @@ -0,0 +1,28 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-normal.svg new file mode 100644 index 0000000..9a95766 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/close-normal.svg @@ -0,0 +1,22 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-active.svg new file mode 100644 index 0000000..a7db086 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-active.svg new file mode 100644 index 0000000..618aeaf --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-hover.svg new file mode 100644 index 0000000..5ef91d6 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-normal.svg new file mode 100644 index 0000000..3beb9a3 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-backdrop-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-hover.svg new file mode 100644 index 0000000..ee7c9d6 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-normal.svg new file mode 100644 index 0000000..699687a --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximize-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-active.svg new file mode 100644 index 0000000..1ac2a4f --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-active.svg new file mode 100644 index 0000000..79d12e0 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-hover.svg new file mode 100644 index 0000000..c4be2b1 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-normal.svg new file mode 100644 index 0000000..0aae9d9 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-backdrop-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-hover.svg new file mode 100644 index 0000000..12cca85 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-normal.svg new file mode 100644 index 0000000..31d0b74 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/maximized-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-active.svg new file mode 100644 index 0000000..f815f10 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-active.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-active.svg new file mode 100644 index 0000000..d32fce3 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-active.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-hover.svg new file mode 100644 index 0000000..7158df0 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-normal.svg new file mode 100644 index 0000000..9395fce --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-backdrop-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-hover.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-hover.svg new file mode 100644 index 0000000..1438b8c --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-hover.svg @@ -0,0 +1,27 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-normal.svg b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-normal.svg new file mode 100644 index 0000000..be2d8ec --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/assets/minimize-normal.svg @@ -0,0 +1,21 @@ + + +Qt SVG Document +Generated with Qt + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/colors.css b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/colors.css new file mode 100644 index 0000000..6ea0ff5 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/colors.css @@ -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; diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/gtk.css b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/gtk.css new file mode 100644 index 0000000..c9763f7 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/gtk.css @@ -0,0 +1 @@ +@import 'colors.css'; \ No newline at end of file diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/settings.ini b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..3488417 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-3.0/settings.ini @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/colors.css b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/colors.css new file mode 100644 index 0000000..6ea0ff5 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/colors.css @@ -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; diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/gtk.css b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/gtk.css new file mode 100644 index 0000000..c9763f7 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/gtk.css @@ -0,0 +1 @@ +@import 'colors.css'; \ No newline at end of file diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/settings.ini b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/settings.ini new file mode 100644 index 0000000..9728b28 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtk-4.0/settings.ini @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc b/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc new file mode 100644 index 0000000..d454131 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc @@ -0,0 +1,2 @@ +# created by KDE Plasma, ср мая 10 00:53:15 2023 +# diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc-2.0 b/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc-2.0 new file mode 100644 index 0000000..960bb88 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gtkrc-2.0 @@ -0,0 +1,5 @@ +# created by KDE Plasma, ср мая 10 00:53:15 2023 +# + +gtk-alternative-button-order = 1 + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/gwenviewrc b/core/melawy-skel-liveuser/src/etc/skel/.config/gwenviewrc new file mode 100644 index 0000000..f5bc693 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/gwenviewrc @@ -0,0 +1,2 @@ +[$Version] +update_info=gwenview.upd:SideBar_StatusBar_Rename,gwenview.upd:ImageView_AlphaBackgroundMode_Update,gwenview.upd:DeleteThumbnailSetting_Rename diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerd-statsrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerd-statsrc new file mode 100644 index 0000000..0074366 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerd-statsrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerdrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerdrc new file mode 100644 index 0000000..cd3d8ff --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kactivitymanagerdrc @@ -0,0 +1,5 @@ +[activities] +779ac4a6-f9d4-42fe-b314-de165780e7de=Начальная комната + +[main] +currentActivity=779ac4a6-f9d4-42fe-b314-de165780e7de diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kateschemarc b/core/melawy-skel-liveuser/src/etc/skel/.config/kateschemarc new file mode 100644 index 0000000..dd0fd53 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kateschemarc @@ -0,0 +1,2 @@ +[$Version] +update_info=fonts_kate.upd:Plasma_Fonts_Kate diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kcminputrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kcminputrc new file mode 100644 index 0000000..549106a --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kcminputrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kconf_updaterc b/core/melawy-skel-liveuser/src/etc/skel/.config/kconf_updaterc new file mode 100644 index 0000000..d1bf3a6 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kconf_updaterc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.dolphin.conf b/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.dolphin.conf new file mode 100644 index 0000000..c1be982 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.dolphin.conf @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.plasmashell.conf b/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.plasmashell.conf new file mode 100644 index 0000000..c6c78fa --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kde.org/UserFeedback.org.kde.plasmashell.conf @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kded5rc b/core/melawy-skel-liveuser/src/etc/skel/.config/kded5rc new file mode 100644 index 0000000..a005860 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kded5rc @@ -0,0 +1,2 @@ +[Module-device_automounter] +autoload=false diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kcminputrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kcminputrc new file mode 100644 index 0000000..779b957 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kcminputrc @@ -0,0 +1,2 @@ +[Mouse] +cursorTheme=breeze_cursors diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kdeglobals b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kdeglobals new file mode 100644 index 0000000..a9052b9 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kdeglobals @@ -0,0 +1,8 @@ +[General] +ColorScheme=Melawy + +[Icons] +Theme=breeze-dark + +[KDE] +widgetStyle=Breeze diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kscreenlockerrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kscreenlockerrc new file mode 100644 index 0000000..7e949cf --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kscreenlockerrc @@ -0,0 +1,2 @@ +[Greeter] +Theme=org.kde.breeze.desktop diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/ksplashrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/ksplashrc new file mode 100644 index 0000000..6f69bc8 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/ksplashrc @@ -0,0 +1,3 @@ +[KSplash] +Engine=KSplashQML +Theme=org.kde.breeze.desktop diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kwinrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kwinrc new file mode 100644 index 0000000..883ff0f --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/kwinrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/package b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/package new file mode 100644 index 0000000..c188391 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/package @@ -0,0 +1 @@ +org.kde.breezedark.desktop \ No newline at end of file diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/plasmarc b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/plasmarc new file mode 100644 index 0000000..8b58863 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdedefaults/plasmarc @@ -0,0 +1,2 @@ +[Theme] +name=default diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kdeglobals b/core/melawy-skel-liveuser/src/etc/skel/.config/kdeglobals new file mode 100644 index 0000000..45eb73d --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kdeglobals @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kfontinstuirc b/core/melawy-skel-liveuser/src/etc/skel/.config/kfontinstuirc new file mode 100644 index 0000000..3cba066 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kfontinstuirc @@ -0,0 +1,3 @@ +[Main Settings] +GroupSplitterSizes=192,633 +PreviewSplitterSizes=412,220 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kglobalshortcutsrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kglobalshortcutsrc new file mode 100644 index 0000000..d3f2d1d --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kglobalshortcutsrc @@ -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,Блокировка экрана diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/khotkeysrc b/core/melawy-skel-liveuser/src/etc/skel/.config/khotkeysrc new file mode 100644 index 0000000..1069f26 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/khotkeysrc @@ -0,0 +1,1037 @@ +[$Version] +update_info=konsole_globalaccel.upd:konsole_globalaccel,spectacle_shortcuts.upd:spectacle-migrate-shortcuts,konsole.upd:konsole_globalaccel + +[ColorEffects:Disabled] +ChangeSelectionColor[$d] +Color[$d] +ColorAmount[$d] +ColorEffect[$d] +ContrastAmount[$d] +ContrastEffect[$d] +Enable[$d] +IntensityAmount[$d] +IntensityEffect[$d] + +[ColorEffects:Inactive] +ChangeSelectionColor[$d] +Color[$d] +ColorAmount[$d] +ColorEffect[$d] +ContrastAmount[$d] +ContrastEffect[$d] +Enable[$d] +IntensityAmount[$d] +IntensityEffect[$d] + +[Colors:Button] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Complementary] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Header] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Header][Inactive] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Selection] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Tooltip] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:View] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Colors:Window] +BackgroundAlternate[$d] +BackgroundNormal[$d] +DecorationFocus[$d] +DecorationHover[$d] +ForegroundActive[$d] +ForegroundInactive[$d] +ForegroundLink[$d] +ForegroundNegative[$d] +ForegroundNeutral[$d] +ForegroundNormal[$d] +ForegroundPositive[$d] +ForegroundVisited[$d] + +[Data] +DataCount=3 + +[Data_1] +Comment=KMenuEdit Global Shortcuts +DataCount=1 +Enabled=true +Name=KMenuEdit +SystemGroup=1 +Type=ACTION_DATA_GROUP + +[Data_1Conditions] +Comment= +ConditionsCount=0 + +[Data_1_1] +Comment=Комментарий +Enabled=true +Name=Поиск +Type=SIMPLE_ACTION_DATA + +[Data_1_1Actions] +ActionsCount=1 + +[Data_1_1Actions0] +CommandURL=http://google.com +Type=COMMAND_URL + +[Data_1_1Conditions] +Comment= +ConditionsCount=0 + +[Data_1_1Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_1_1Triggers0] +Key= +Type=SHORTCUT +Uuid={d03619b6-9b3c-48cc-9d9c-a2aadb485550} + +[Data_2] +Comment=Эта группа содержит некоторые примеры, демонстрирующие возможности настройки. По умолчанию все действия в этой группе отключены. +DataCount=8 +Enabled=false +ImportId=kde32b1 +Name=Примеры +SystemGroup=0 +Type=ACTION_DATA_GROUP + +[Data_2Conditions] +Comment= +ConditionsCount=0 + +[Data_2_1] +Comment=При нажатии Ctrl+Alt+I существующее окно KSIRC становится активным. +Enabled=false +Name=Показать окно KSIRC +Type=SIMPLE_ACTION_DATA + +[Data_2_1Actions] +ActionsCount=1 + +[Data_2_1Actions0] +Type=ACTIVATE_WINDOW + +[Data_2_1Actions0Window] +Comment=Окно KSIRC +WindowsCount=1 + +[Data_2_1Actions0Window0] +Class=ksirc +ClassType=1 +Comment=KSIRC +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 + +[Data_2_1Conditions] +Comment= +ConditionsCount=0 + +[Data_2_1Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_1Triggers0] +Key=Ctrl+Alt+I +Type=SHORTCUT +Uuid={b78c7c69-f39d-4958-8a07-6e3f38b805d9} + +[Data_2_2] +Comment=При нажатии комбинации клавиш Alt+Ctrl+H будет имитирован ввод слова «Hello» как будто если бы вы набивали его вручную с клавиатуры. Это особенно полезно, если вам необходимо часто вводить одно слово (например, ключевое слово языка C «unsigned»). Нажатия клавиш разделяются двоеточием (:). Помните, что нужно перечислять все без исключения клавиши, которые вы нажали бы на клавиатуре. В таблице, приведённой ниже, в левом столбце указан ожидаемый ввод, а в правом — текст, который нужно указать параметрах действия.\n\n«Enter» (новая строка) Enter или Return\na (строчная буква a) A\nA (заглавная буква A) Shift+A\n: (двоеточие) Shift+;\n« » (пробел) Space +Enabled=false +Name=Ввод «Hello» +Type=SIMPLE_ACTION_DATA + +[Data_2_2Actions] +ActionsCount=1 + +[Data_2_2Actions0] +DestinationWindow=2 +Input=Shift+H:E:L:L:O\n +Type=KEYBOARD_INPUT + +[Data_2_2Conditions] +Comment= +ConditionsCount=0 + +[Data_2_2Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_2Triggers0] +Key=Ctrl+Alt+H +Type=SHORTCUT +Uuid={2f733c61-fe08-4332-afd1-4dd0e99ec413} + +[Data_2_3] +Comment=Запуск Konsole при нажатии Ctrl+Alt+T. +Enabled=false +Name=Запустить Konsole +Type=SIMPLE_ACTION_DATA + +[Data_2_3Actions] +ActionsCount=1 + +[Data_2_3Actions0] +CommandURL=konsole +Type=COMMAND_URL + +[Data_2_3Conditions] +Comment= +ConditionsCount=0 + +[Data_2_3Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_3Triggers0] +Key=Ctrl+Alt+T +Type=SHORTCUT +Uuid={78a742db-ae66-40fe-bf8e-c33e14d77700} + +[Data_2_4] +Comment=Сначала прочитайте комментарий к действию по вводу слова «Hello».\n\nQt Designer использует комбинацию клавиш Ctrl+F4 для закрытия окон. В KDE эта комбинация клавиш переключает на четвёртый виртуальный рабочий стол, поэтому это не будет работать в Qt Designer. В Qt Designer также не работает стандартная для KDE комбинация клавиш Ctrl+W, закрывающая окно.\n\nПроблема может быть решена переназначением Ctrl+W на Ctrl+F4 в том случае, если активно окно Qt Designer. Итак, если пользователь работает с Qt Designer, нажатие Ctrl+W будет преобразовано в нажатие Ctrl+F4, после чего Qt Designer завершится. Для других приложений действие Ctrl+W не изменится.\n\nЧтобы достичь описанного выше эффекта, нужно сделать три вещи: привязать действие к комбинации клавиш Ctrl+W, действие должно имитировать нажатие Ctrl+F4, действие должно срабатывать при условии, что активным является окно Qt Designer.\nБудем считать, что Qt Designer всегда имеет заголовок окна «Qt Designer by Trolltech», поэтому используем условие на заголовок текущего окна. +Enabled=false +Name=Замена Ctrl+W на Ctrl+F4 для Qt Designer +Type=GENERIC_ACTION_DATA + +[Data_2_4Actions] +ActionsCount=1 + +[Data_2_4Actions0] +DestinationWindow=2 +Input=Ctrl+F4 +Type=KEYBOARD_INPUT + +[Data_2_4Conditions] +Comment= +ConditionsCount=1 + +[Data_2_4Conditions0] +Type=ACTIVE_WINDOW + +[Data_2_4Conditions0Window] +Comment=Qt Designer +WindowsCount=1 + +[Data_2_4Conditions0Window0] +Class= +ClassType=0 +Comment= +Role= +RoleType=0 +Title=Trolltech Qt Designer +TitleType=2 +Type=SIMPLE +WindowTypes=33 + +[Data_2_4Triggers] +Comment= +TriggersCount=1 + +[Data_2_4Triggers0] +Key=Ctrl+W +Type=SHORTCUT +Uuid={0ac7358c-3f9f-418e-bac4-1508866eb126} + +[Data_2_5] +Comment=При нажатии Alt+Ctrl+W будет осуществлён вызов D-Bus для показа диалога выполнения команд. Вы можете указывать любые вызовы D-Bus как при использовании программы «qdbus». +Enabled=false +Name=Выполнение вызова D-Bus «qdbus org.kde.krunner /App display» +Type=SIMPLE_ACTION_DATA + +[Data_2_5Actions] +ActionsCount=1 + +[Data_2_5Actions0] +Arguments= +Call=popupExecuteCommand +RemoteApp=org.kde.krunner +RemoteObj=/App +Type=DBUS + +[Data_2_5Conditions] +Comment= +ConditionsCount=0 + +[Data_2_5Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_5Triggers0] +Key=Ctrl+Alt+W +Type=SHORTCUT +Uuid={cc8eedc8-eff6-47e8-8d4b-bfe0f5e74c68} + +[Data_2_6] +Comment=Сначала прочитайте комментарий к действию по вводу слова «Hello».\n\nКак и действие по вводу слова «Hello», это действие имитирует ввод с клавиатуры. При нажатии Ctrl+Alt+B имитируется нажатие клавиши B в окно XMMS (для перехода к следующей дорожке в этом проигрывателе). Окно XMMS ищется по классу окна «XMMS_Player».\nКласс любого окна вы можете определить, запустив программу «xprop» и щёлкнув мышью на окне. +Enabled=false +Name=Следующая композиция в XMMS +Type=SIMPLE_ACTION_DATA + +[Data_2_6Actions] +ActionsCount=1 + +[Data_2_6Actions0] +DestinationWindow=1 +Input=B +Type=KEYBOARD_INPUT + +[Data_2_6Actions0DestinationWindow] +Comment=Окно XMMS +WindowsCount=1 + +[Data_2_6Actions0DestinationWindow0] +Class=XMMS_Player +ClassType=1 +Comment=Окно проигрывателя XMMS +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 + +[Data_2_6Conditions] +Comment= +ConditionsCount=0 + +[Data_2_6Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_6Triggers0] +Key=Ctrl+Alt+B +Type=SHORTCUT +Uuid={f69c9d72-a6a0-4d90-88e1-665ec41652a4} + +[Data_2_7] +Comment=С версии 3.1 Konqueror поддерживает работу с вкладками, а теперь также доступны росчерки мышью.\nНажмите среднюю кнопку мыши, сделайте необходимый росчерк и отпустите кнопку. Вставка текста по средней кнопки мыши по-прежнему работает (если вы не двигаете мышь). Кнопку мыши, которая вставляет текст, можно поменять.\n\nДоступны следующие росчерки:\nвправо и влево — Вперёд (Alt+Стрелка вправо)\nвлево и вправо — Назад (Alt+Стрелка влево)\nвверх и вниз - Вверх (Alt+Стрелка вверх)\nокружность против часовой стрелки — Обновить (F5)\n\nВы можете добавить свои росчерки, «нарисовав» их в окне настройки. Росчерки распознаются как последовательности клеток на сетке 3x3, которые можно пронумеровать числами как на цифровом блоке клавиатуры.\n\nРекомендуется по возможности использовать такое росчерки, в которых направление движения мыши меняется не более одного раза. Например, росчерки 45654 и 74123 легко выполнить, а росчерк 1236987 уже может быть достаточно сложным для некоторых пользователей.\n\nУсловия для всех росчерков определены в этой группе. Все эти росчерки работают только в окне Konqueror (класс окна «konqueror»). +DataCount=4 +Enabled=false +Name=Росчерки Konqueror +SystemGroup=0 +Type=ACTION_DATA_GROUP + +[Data_2_7Conditions] +Comment=Окно Konqueror +ConditionsCount=1 + +[Data_2_7Conditions0] +Type=ACTIVE_WINDOW + +[Data_2_7Conditions0Window] +Comment=Konqueror +WindowsCount=1 + +[Data_2_7Conditions0Window0] +Class=konqueror +ClassType=1 +Comment=Konqueror +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 + +[Data_2_7_1] +Comment= +Enabled=false +Name=Назад +Type=SIMPLE_ACTION_DATA + +[Data_2_7_1Actions] +ActionsCount=1 + +[Data_2_7_1Actions0] +DestinationWindow=2 +Input=Alt+Left +Type=KEYBOARD_INPUT + +[Data_2_7_1Conditions] +Comment= +ConditionsCount=0 + +[Data_2_7_1Triggers] +Comment=Gesture_triggers +TriggersCount=3 + +[Data_2_7_1Triggers0] +GesturePointData=0,0.0625,1,1,0.5,0.0625,0.0625,1,0.875,0.5,0.125,0.0625,1,0.75,0.5,0.1875,0.0625,1,0.625,0.5,0.25,0.0625,1,0.5,0.5,0.3125,0.0625,1,0.375,0.5,0.375,0.0625,1,0.25,0.5,0.4375,0.0625,1,0.125,0.5,0.5,0.0625,0,0,0.5,0.5625,0.0625,0,0.125,0.5,0.625,0.0625,0,0.25,0.5,0.6875,0.0625,0,0.375,0.5,0.75,0.0625,0,0.5,0.5,0.8125,0.0625,0,0.625,0.5,0.875,0.0625,0,0.75,0.5,0.9375,0.0625,0,0.875,0.5,1,0,0,1,0.5 +Type=GESTURE + +[Data_2_7_1Triggers1] +GesturePointData=0,0.0833333,1,0.5,0.5,0.0833333,0.0833333,1,0.375,0.5,0.166667,0.0833333,1,0.25,0.5,0.25,0.0833333,1,0.125,0.5,0.333333,0.0833333,0,0,0.5,0.416667,0.0833333,0,0.125,0.5,0.5,0.0833333,0,0.25,0.5,0.583333,0.0833333,0,0.375,0.5,0.666667,0.0833333,0,0.5,0.5,0.75,0.0833333,0,0.625,0.5,0.833333,0.0833333,0,0.75,0.5,0.916667,0.0833333,0,0.875,0.5,1,0,0,1,0.5 +Type=GESTURE + +[Data_2_7_1Triggers2] +GesturePointData=0,0.0833333,1,1,0.5,0.0833333,0.0833333,1,0.875,0.5,0.166667,0.0833333,1,0.75,0.5,0.25,0.0833333,1,0.625,0.5,0.333333,0.0833333,1,0.5,0.5,0.416667,0.0833333,1,0.375,0.5,0.5,0.0833333,1,0.25,0.5,0.583333,0.0833333,1,0.125,0.5,0.666667,0.0833333,0,0,0.5,0.75,0.0833333,0,0.125,0.5,0.833333,0.0833333,0,0.25,0.5,0.916667,0.0833333,0,0.375,0.5,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_2_7_2] +Comment= +Enabled=false +Name=Вперёд +Type=SIMPLE_ACTION_DATA + +[Data_2_7_2Actions] +ActionsCount=1 + +[Data_2_7_2Actions0] +DestinationWindow=2 +Input=Alt+Right +Type=KEYBOARD_INPUT + +[Data_2_7_2Conditions] +Comment= +ConditionsCount=0 + +[Data_2_7_2Triggers] +Comment=Gesture_triggers +TriggersCount=3 + +[Data_2_7_2Triggers0] +GesturePointData=0,0.0625,0,0,0.5,0.0625,0.0625,0,0.125,0.5,0.125,0.0625,0,0.25,0.5,0.1875,0.0625,0,0.375,0.5,0.25,0.0625,0,0.5,0.5,0.3125,0.0625,0,0.625,0.5,0.375,0.0625,0,0.75,0.5,0.4375,0.0625,0,0.875,0.5,0.5,0.0625,1,1,0.5,0.5625,0.0625,1,0.875,0.5,0.625,0.0625,1,0.75,0.5,0.6875,0.0625,1,0.625,0.5,0.75,0.0625,1,0.5,0.5,0.8125,0.0625,1,0.375,0.5,0.875,0.0625,1,0.25,0.5,0.9375,0.0625,1,0.125,0.5,1,0,0,0,0.5 +Type=GESTURE + +[Data_2_7_2Triggers1] +GesturePointData=0,0.0833333,0,0.5,0.5,0.0833333,0.0833333,0,0.625,0.5,0.166667,0.0833333,0,0.75,0.5,0.25,0.0833333,0,0.875,0.5,0.333333,0.0833333,1,1,0.5,0.416667,0.0833333,1,0.875,0.5,0.5,0.0833333,1,0.75,0.5,0.583333,0.0833333,1,0.625,0.5,0.666667,0.0833333,1,0.5,0.5,0.75,0.0833333,1,0.375,0.5,0.833333,0.0833333,1,0.25,0.5,0.916667,0.0833333,1,0.125,0.5,1,0,0,0,0.5 +Type=GESTURE + +[Data_2_7_2Triggers2] +GesturePointData=0,0.0833333,0,0,0.5,0.0833333,0.0833333,0,0.125,0.5,0.166667,0.0833333,0,0.25,0.5,0.25,0.0833333,0,0.375,0.5,0.333333,0.0833333,0,0.5,0.5,0.416667,0.0833333,0,0.625,0.5,0.5,0.0833333,0,0.75,0.5,0.583333,0.0833333,0,0.875,0.5,0.666667,0.0833333,1,1,0.5,0.75,0.0833333,1,0.875,0.5,0.833333,0.0833333,1,0.75,0.5,0.916667,0.0833333,1,0.625,0.5,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_2_7_3] +Comment= +Enabled=false +Name=Вверх +Type=SIMPLE_ACTION_DATA + +[Data_2_7_3Actions] +ActionsCount=1 + +[Data_2_7_3Actions0] +DestinationWindow=2 +Input=Alt+Up +Type=KEYBOARD_INPUT + +[Data_2_7_3Conditions] +Comment= +ConditionsCount=0 + +[Data_2_7_3Triggers] +Comment=Gesture_triggers +TriggersCount=3 + +[Data_2_7_3Triggers0] +GesturePointData=0,0.0625,-0.5,0.5,1,0.0625,0.0625,-0.5,0.5,0.875,0.125,0.0625,-0.5,0.5,0.75,0.1875,0.0625,-0.5,0.5,0.625,0.25,0.0625,-0.5,0.5,0.5,0.3125,0.0625,-0.5,0.5,0.375,0.375,0.0625,-0.5,0.5,0.25,0.4375,0.0625,-0.5,0.5,0.125,0.5,0.0625,0.5,0.5,0,0.5625,0.0625,0.5,0.5,0.125,0.625,0.0625,0.5,0.5,0.25,0.6875,0.0625,0.5,0.5,0.375,0.75,0.0625,0.5,0.5,0.5,0.8125,0.0625,0.5,0.5,0.625,0.875,0.0625,0.5,0.5,0.75,0.9375,0.0625,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[Data_2_7_3Triggers1] +GesturePointData=0,0.0833333,-0.5,0.5,1,0.0833333,0.0833333,-0.5,0.5,0.875,0.166667,0.0833333,-0.5,0.5,0.75,0.25,0.0833333,-0.5,0.5,0.625,0.333333,0.0833333,-0.5,0.5,0.5,0.416667,0.0833333,-0.5,0.5,0.375,0.5,0.0833333,-0.5,0.5,0.25,0.583333,0.0833333,-0.5,0.5,0.125,0.666667,0.0833333,0.5,0.5,0,0.75,0.0833333,0.5,0.5,0.125,0.833333,0.0833333,0.5,0.5,0.25,0.916667,0.0833333,0.5,0.5,0.375,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_2_7_3Triggers2] +GesturePointData=0,0.0833333,-0.5,0.5,0.5,0.0833333,0.0833333,-0.5,0.5,0.375,0.166667,0.0833333,-0.5,0.5,0.25,0.25,0.0833333,-0.5,0.5,0.125,0.333333,0.0833333,0.5,0.5,0,0.416667,0.0833333,0.5,0.5,0.125,0.5,0.0833333,0.5,0.5,0.25,0.583333,0.0833333,0.5,0.5,0.375,0.666667,0.0833333,0.5,0.5,0.5,0.75,0.0833333,0.5,0.5,0.625,0.833333,0.0833333,0.5,0.5,0.75,0.916667,0.0833333,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[Data_2_7_4] +Comment= +Enabled=false +Name=Обновить +Type=SIMPLE_ACTION_DATA + +[Data_2_7_4Actions] +ActionsCount=1 + +[Data_2_7_4Actions0] +DestinationWindow=2 +Input=F5 +Type=KEYBOARD_INPUT + +[Data_2_7_4Conditions] +Comment= +ConditionsCount=0 + +[Data_2_7_4Triggers] +Comment=Gesture_triggers +TriggersCount=3 + +[Data_2_7_4Triggers0] +GesturePointData=0,0.03125,0,0,1,0.03125,0.03125,0,0.125,1,0.0625,0.03125,0,0.25,1,0.09375,0.03125,0,0.375,1,0.125,0.03125,0,0.5,1,0.15625,0.03125,0,0.625,1,0.1875,0.03125,0,0.75,1,0.21875,0.03125,0,0.875,1,0.25,0.03125,-0.5,1,1,0.28125,0.03125,-0.5,1,0.875,0.3125,0.03125,-0.5,1,0.75,0.34375,0.03125,-0.5,1,0.625,0.375,0.03125,-0.5,1,0.5,0.40625,0.03125,-0.5,1,0.375,0.4375,0.03125,-0.5,1,0.25,0.46875,0.03125,-0.5,1,0.125,0.5,0.03125,1,1,0,0.53125,0.03125,1,0.875,0,0.5625,0.03125,1,0.75,0,0.59375,0.03125,1,0.625,0,0.625,0.03125,1,0.5,0,0.65625,0.03125,1,0.375,0,0.6875,0.03125,1,0.25,0,0.71875,0.03125,1,0.125,0,0.75,0.03125,0.5,0,0,0.78125,0.03125,0.5,0,0.125,0.8125,0.03125,0.5,0,0.25,0.84375,0.03125,0.5,0,0.375,0.875,0.03125,0.5,0,0.5,0.90625,0.03125,0.5,0,0.625,0.9375,0.03125,0.5,0,0.75,0.96875,0.03125,0.5,0,0.875,1,0,0,0,1 +Type=GESTURE + +[Data_2_7_4Triggers1] +GesturePointData=0,0.0277778,0,0,1,0.0277778,0.0277778,0,0.125,1,0.0555556,0.0277778,0,0.25,1,0.0833333,0.0277778,0,0.375,1,0.111111,0.0277778,0,0.5,1,0.138889,0.0277778,0,0.625,1,0.166667,0.0277778,0,0.75,1,0.194444,0.0277778,0,0.875,1,0.222222,0.0277778,-0.5,1,1,0.25,0.0277778,-0.5,1,0.875,0.277778,0.0277778,-0.5,1,0.75,0.305556,0.0277778,-0.5,1,0.625,0.333333,0.0277778,-0.5,1,0.5,0.361111,0.0277778,-0.5,1,0.375,0.388889,0.0277778,-0.5,1,0.25,0.416667,0.0277778,-0.5,1,0.125,0.444444,0.0277778,1,1,0,0.472222,0.0277778,1,0.875,0,0.5,0.0277778,1,0.75,0,0.527778,0.0277778,1,0.625,0,0.555556,0.0277778,1,0.5,0,0.583333,0.0277778,1,0.375,0,0.611111,0.0277778,1,0.25,0,0.638889,0.0277778,1,0.125,0,0.666667,0.0277778,0.5,0,0,0.694444,0.0277778,0.5,0,0.125,0.722222,0.0277778,0.5,0,0.25,0.75,0.0277778,0.5,0,0.375,0.777778,0.0277778,0.5,0,0.5,0.805556,0.0277778,0.5,0,0.625,0.833333,0.0277778,0.5,0,0.75,0.861111,0.0277778,0.5,0,0.875,0.888889,0.0277778,0,0,1,0.916667,0.0277778,0,0.125,1,0.944444,0.0277778,0,0.25,1,0.972222,0.0277778,0,0.375,1,1,0,0,0.5,1 +Type=GESTURE + +[Data_2_7_4Triggers2] +GesturePointData=0,0.0277778,0.5,0,0.5,0.0277778,0.0277778,0.5,0,0.625,0.0555556,0.0277778,0.5,0,0.75,0.0833333,0.0277778,0.5,0,0.875,0.111111,0.0277778,0,0,1,0.138889,0.0277778,0,0.125,1,0.166667,0.0277778,0,0.25,1,0.194444,0.0277778,0,0.375,1,0.222222,0.0277778,0,0.5,1,0.25,0.0277778,0,0.625,1,0.277778,0.0277778,0,0.75,1,0.305556,0.0277778,0,0.875,1,0.333333,0.0277778,-0.5,1,1,0.361111,0.0277778,-0.5,1,0.875,0.388889,0.0277778,-0.5,1,0.75,0.416667,0.0277778,-0.5,1,0.625,0.444444,0.0277778,-0.5,1,0.5,0.472222,0.0277778,-0.5,1,0.375,0.5,0.0277778,-0.5,1,0.25,0.527778,0.0277778,-0.5,1,0.125,0.555556,0.0277778,1,1,0,0.583333,0.0277778,1,0.875,0,0.611111,0.0277778,1,0.75,0,0.638889,0.0277778,1,0.625,0,0.666667,0.0277778,1,0.5,0,0.694444,0.0277778,1,0.375,0,0.722222,0.0277778,1,0.25,0,0.75,0.0277778,1,0.125,0,0.777778,0.0277778,0.5,0,0,0.805556,0.0277778,0.5,0,0.125,0.833333,0.0277778,0.5,0,0.25,0.861111,0.0277778,0.5,0,0.375,0.888889,0.0277778,0.5,0,0.5,0.916667,0.0277778,0.5,0,0.625,0.944444,0.0277778,0.5,0,0.75,0.972222,0.0277778,0.5,0,0.875,1,0,0,0,1 +Type=GESTURE + +[Data_2_8] +Comment=При нажатии Win+E (Tux+E) в браузере будет открыта страница http://www.kde.org. Вы можете запускать любые команды, доступные в диалоге выполнения команд по Alt+F2. +Enabled=false +Name=Сайт KDE +Type=SIMPLE_ACTION_DATA + +[Data_2_8Actions] +ActionsCount=1 + +[Data_2_8Actions0] +CommandURL=http://www.kde.org +Type=COMMAND_URL + +[Data_2_8Conditions] +Comment= +ConditionsCount=0 + +[Data_2_8Triggers] +Comment=Простое действие +TriggersCount=1 + +[Data_2_8Triggers0] +Key=Meta+E +Type=SHORTCUT +Uuid={eac7359e-a74e-4153-a191-f7e8357705ba} + +[Data_3] +Comment=Базовые росчерки Konqueror. +DataCount=14 +Enabled=true +ImportId=konqueror_gestures_kde321 +Name=Росчерки Konqueror +SystemGroup=0 +Type=ACTION_DATA_GROUP + +[Data_3Conditions] +Comment=Окно Konqueror +ConditionsCount=1 + +[Data_3Conditions0] +Type=ACTIVE_WINDOW + +[Data_3Conditions0Window] +Comment=Konqueror +WindowsCount=1 + +[Data_3Conditions0Window0] +Class=^konqueror\s +ClassType=3 +Comment=Konqueror +Role=konqueror-mainwindow#1 +RoleType=0 +Title=file:/ - Konqueror +TitleType=0 +Type=SIMPLE +WindowTypes=1 + +[Data_3_1] +Comment=Нажать, влево, отпустить. +Enabled=true +Name=Назад +Type=SIMPLE_ACTION_DATA + +[Data_3_10] +Comment=Росчерк Opera: нажать, вверх, отпустить.\nКонфликтует с действием «Новая вкладка», которое отключено по умолчанию. +Enabled=false +Name=Остановить загрузку +Type=SIMPLE_ACTION_DATA + +[Data_3_10Actions] +ActionsCount=1 + +[Data_3_10Actions0] +DestinationWindow=2 +Input=Escape\n +Type=KEYBOARD_INPUT + +[Data_3_10Conditions] +Comment= +ConditionsCount=0 + +[Data_3_10Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_10Triggers0] +GesturePointData=0,0.125,-0.5,0.5,1,0.125,0.125,-0.5,0.5,0.875,0.25,0.125,-0.5,0.5,0.75,0.375,0.125,-0.5,0.5,0.625,0.5,0.125,-0.5,0.5,0.5,0.625,0.125,-0.5,0.5,0.375,0.75,0.125,-0.5,0.5,0.25,0.875,0.125,-0.5,0.5,0.125,1,0,0,0.5,0 +Type=GESTURE + +[Data_3_11] +Comment=Перейти на два уровня выше.\nРосчерк Mozilla: нажать, вверх, влево, вверх, отпустить +Enabled=true +Name=Вверх +Type=SIMPLE_ACTION_DATA + +[Data_3_11Actions] +ActionsCount=1 + +[Data_3_11Actions0] +DestinationWindow=2 +Input=Alt+Up +Type=KEYBOARD_INPUT + +[Data_3_11Conditions] +Comment= +ConditionsCount=0 + +[Data_3_11Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_11Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,1,1,0.5,0.3125,0.0625,1,0.875,0.5,0.375,0.0625,1,0.75,0.5,0.4375,0.0625,1,0.625,0.5,0.5,0.0625,1,0.5,0.5,0.5625,0.0625,1,0.375,0.5,0.625,0.0625,1,0.25,0.5,0.6875,0.0625,1,0.125,0.5,0.75,0.0625,-0.5,0,0.5,0.8125,0.0625,-0.5,0,0.375,0.875,0.0625,-0.5,0,0.25,0.9375,0.0625,-0.5,0,0.125,1,0,0,0,0 +Type=GESTURE + +[Data_3_12] +Comment=Перейти на два уровня выше.\nРосчерк Opera: нажать, вверх, влево, вверх, отпустить.\nКонфликтует с действием «Перейти на предыдущую вкладку», которое отключено по умолчанию. +Enabled=false +Name=Вверх на два уровня +Type=SIMPLE_ACTION_DATA + +[Data_3_12Actions] +ActionsCount=1 + +[Data_3_12Actions0] +DestinationWindow=2 +Input=Alt+Up\n +Type=KEYBOARD_INPUT + +[Data_3_12Conditions] +Comment= +ConditionsCount=0 + +[Data_3_12Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_12Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,-0.5,1,0.5,0.3125,0.0625,-0.5,1,0.375,0.375,0.0625,-0.5,1,0.25,0.4375,0.0625,-0.5,1,0.125,0.5,0.0625,1,1,0,0.5625,0.0625,1,0.875,0,0.625,0.0625,1,0.75,0,0.6875,0.0625,1,0.625,0,0.75,0.0625,1,0.5,0,0.8125,0.0625,1,0.375,0,0.875,0.0625,1,0.25,0,0.9375,0.0625,1,0.125,0,1,0,0,0,0 +Type=GESTURE + +[Data_3_13] +Comment=Нажать, вверх, вправо, отпустить. +Enabled=true +Name=Перейти на следующую вкладку +Type=SIMPLE_ACTION_DATA + +[Data_3_13Actions] +ActionsCount=1 + +[Data_3_13Actions0] +DestinationWindow=2 +Input=Ctrl+.\n +Type=KEYBOARD_INPUT + +[Data_3_13Conditions] +Comment= +ConditionsCount=0 + +[Data_3_13Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_13Triggers0] +GesturePointData=0,0.0625,-0.5,0,1,0.0625,0.0625,-0.5,0,0.875,0.125,0.0625,-0.5,0,0.75,0.1875,0.0625,-0.5,0,0.625,0.25,0.0625,-0.5,0,0.5,0.3125,0.0625,-0.5,0,0.375,0.375,0.0625,-0.5,0,0.25,0.4375,0.0625,-0.5,0,0.125,0.5,0.0625,0,0,0,0.5625,0.0625,0,0.125,0,0.625,0.0625,0,0.25,0,0.6875,0.0625,0,0.375,0,0.75,0.0625,0,0.5,0,0.8125,0.0625,0,0.625,0,0.875,0.0625,0,0.75,0,0.9375,0.0625,0,0.875,0,1,0,0,1,0 +Type=GESTURE + +[Data_3_14] +Comment=Нажать, вверх, влево, отпустить. +Enabled=true +Name=Перейти на предыдущую вкладку +Type=SIMPLE_ACTION_DATA + +[Data_3_14Actions] +ActionsCount=1 + +[Data_3_14Actions0] +DestinationWindow=2 +Input=Ctrl+, +Type=KEYBOARD_INPUT + +[Data_3_14Conditions] +Comment= +ConditionsCount=0 + +[Data_3_14Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_14Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,-0.5,1,0.5,0.3125,0.0625,-0.5,1,0.375,0.375,0.0625,-0.5,1,0.25,0.4375,0.0625,-0.5,1,0.125,0.5,0.0625,1,1,0,0.5625,0.0625,1,0.875,0,0.625,0.0625,1,0.75,0,0.6875,0.0625,1,0.625,0,0.75,0.0625,1,0.5,0,0.8125,0.0625,1,0.375,0,0.875,0.0625,1,0.25,0,0.9375,0.0625,1,0.125,0,1,0,0,0,0 +Type=GESTURE + +[Data_3_1Actions] +ActionsCount=1 + +[Data_3_1Actions0] +DestinationWindow=2 +Input=Alt+Left +Type=KEYBOARD_INPUT + +[Data_3_1Conditions] +Comment= +ConditionsCount=0 + +[Data_3_1Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_1Triggers0] +GesturePointData=0,0.125,1,1,0.5,0.125,0.125,1,0.875,0.5,0.25,0.125,1,0.75,0.5,0.375,0.125,1,0.625,0.5,0.5,0.125,1,0.5,0.5,0.625,0.125,1,0.375,0.5,0.75,0.125,1,0.25,0.5,0.875,0.125,1,0.125,0.5,1,0,0,0,0.5 +Type=GESTURE + +[Data_3_2] +Comment=Нажать, вниз, вверх, вниз, отпустить. +Enabled=true +Name=Дублировать вкладку +Type=SIMPLE_ACTION_DATA + +[Data_3_2Actions] +ActionsCount=1 + +[Data_3_2Actions0] +DestinationWindow=2 +Input=Ctrl+Shift+D\n +Type=KEYBOARD_INPUT + +[Data_3_2Conditions] +Comment= +ConditionsCount=0 + +[Data_3_2Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_2Triggers0] +GesturePointData=0,0.0416667,0.5,0.5,0,0.0416667,0.0416667,0.5,0.5,0.125,0.0833333,0.0416667,0.5,0.5,0.25,0.125,0.0416667,0.5,0.5,0.375,0.166667,0.0416667,0.5,0.5,0.5,0.208333,0.0416667,0.5,0.5,0.625,0.25,0.0416667,0.5,0.5,0.75,0.291667,0.0416667,0.5,0.5,0.875,0.333333,0.0416667,-0.5,0.5,1,0.375,0.0416667,-0.5,0.5,0.875,0.416667,0.0416667,-0.5,0.5,0.75,0.458333,0.0416667,-0.5,0.5,0.625,0.5,0.0416667,-0.5,0.5,0.5,0.541667,0.0416667,-0.5,0.5,0.375,0.583333,0.0416667,-0.5,0.5,0.25,0.625,0.0416667,-0.5,0.5,0.125,0.666667,0.0416667,0.5,0.5,0,0.708333,0.0416667,0.5,0.5,0.125,0.75,0.0416667,0.5,0.5,0.25,0.791667,0.0416667,0.5,0.5,0.375,0.833333,0.0416667,0.5,0.5,0.5,0.875,0.0416667,0.5,0.5,0.625,0.916667,0.0416667,0.5,0.5,0.75,0.958333,0.0416667,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[Data_3_3] +Comment=Нажать, вниз, вверх, отпустить. +Enabled=true +Name=Дублировать окно +Type=SIMPLE_ACTION_DATA + +[Data_3_3Actions] +ActionsCount=1 + +[Data_3_3Actions0] +DestinationWindow=2 +Input=Ctrl+D\n +Type=KEYBOARD_INPUT + +[Data_3_3Conditions] +Comment= +ConditionsCount=0 + +[Data_3_3Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_3Triggers0] +GesturePointData=0,0.0625,0.5,0.5,0,0.0625,0.0625,0.5,0.5,0.125,0.125,0.0625,0.5,0.5,0.25,0.1875,0.0625,0.5,0.5,0.375,0.25,0.0625,0.5,0.5,0.5,0.3125,0.0625,0.5,0.5,0.625,0.375,0.0625,0.5,0.5,0.75,0.4375,0.0625,0.5,0.5,0.875,0.5,0.0625,-0.5,0.5,1,0.5625,0.0625,-0.5,0.5,0.875,0.625,0.0625,-0.5,0.5,0.75,0.6875,0.0625,-0.5,0.5,0.625,0.75,0.0625,-0.5,0.5,0.5,0.8125,0.0625,-0.5,0.5,0.375,0.875,0.0625,-0.5,0.5,0.25,0.9375,0.0625,-0.5,0.5,0.125,1,0,0,0.5,0 +Type=GESTURE + +[Data_3_4] +Comment=Нажать, вправо, отпустить. +Enabled=true +Name=Вперёд +Type=SIMPLE_ACTION_DATA + +[Data_3_4Actions] +ActionsCount=1 + +[Data_3_4Actions0] +DestinationWindow=2 +Input=Alt+Right +Type=KEYBOARD_INPUT + +[Data_3_4Conditions] +Comment= +ConditionsCount=0 + +[Data_3_4Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_4Triggers0] +GesturePointData=0,0.125,0,0,0.5,0.125,0.125,0,0.125,0.5,0.25,0.125,0,0.25,0.5,0.375,0.125,0,0.375,0.5,0.5,0.125,0,0.5,0.5,0.625,0.125,0,0.625,0.5,0.75,0.125,0,0.75,0.5,0.875,0.125,0,0.875,0.5,1,0,0,1,0.5 +Type=GESTURE + +[Data_3_5] +Comment=Нажать, вниз, вполовину вверх, вправо, вниз, отпустить.\nКак будто рисуете мышью букву «h». +Enabled=true +Name=Домашняя папка +Type=SIMPLE_ACTION_DATA + +[Data_3_5Actions] +ActionsCount=1 + +[Data_3_5Actions0] +DestinationWindow=2 +Input=Alt+Home\n +Type=KEYBOARD_INPUT + +[Data_3_5Conditions] +Comment= +ConditionsCount=0 + +[Data_3_5Triggers] +Comment=Gesture_triggers +TriggersCount=2 + +[Data_3_5Triggers0] +GesturePointData=0,0.0461748,0.5,0,0,0.0461748,0.0461748,0.5,0,0.125,0.0923495,0.0461748,0.5,0,0.25,0.138524,0.0461748,0.5,0,0.375,0.184699,0.0461748,0.5,0,0.5,0.230874,0.0461748,0.5,0,0.625,0.277049,0.0461748,0.5,0,0.75,0.323223,0.0461748,0.5,0,0.875,0.369398,0.065301,-0.25,0,1,0.434699,0.065301,-0.25,0.125,0.875,0.5,0.065301,-0.25,0.25,0.75,0.565301,0.065301,-0.25,0.375,0.625,0.630602,0.0461748,0,0.5,0.5,0.676777,0.0461748,0,0.625,0.5,0.722951,0.0461748,0,0.75,0.5,0.769126,0.0461748,0,0.875,0.5,0.815301,0.0461748,0.5,1,0.5,0.861476,0.0461748,0.5,1,0.625,0.90765,0.0461748,0.5,1,0.75,0.953825,0.0461748,0.5,1,0.875,1,0,0,1,1 +Type=GESTURE + +[Data_3_5Triggers1] +GesturePointData=0,0.0416667,0.5,0,0,0.0416667,0.0416667,0.5,0,0.125,0.0833333,0.0416667,0.5,0,0.25,0.125,0.0416667,0.5,0,0.375,0.166667,0.0416667,0.5,0,0.5,0.208333,0.0416667,0.5,0,0.625,0.25,0.0416667,0.5,0,0.75,0.291667,0.0416667,0.5,0,0.875,0.333333,0.0416667,-0.5,0,1,0.375,0.0416667,-0.5,0,0.875,0.416667,0.0416667,-0.5,0,0.75,0.458333,0.0416667,-0.5,0,0.625,0.5,0.0416667,0,0,0.5,0.541667,0.0416667,0,0.125,0.5,0.583333,0.0416667,0,0.25,0.5,0.625,0.0416667,0,0.375,0.5,0.666667,0.0416667,0,0.5,0.5,0.708333,0.0416667,0,0.625,0.5,0.75,0.0416667,0,0.75,0.5,0.791667,0.0416667,0,0.875,0.5,0.833333,0.0416667,0.5,1,0.5,0.875,0.0416667,0.5,1,0.625,0.916667,0.0416667,0.5,1,0.75,0.958333,0.0416667,0.5,1,0.875,1,0,0,1,1 +Type=GESTURE + +[Data_3_6] +Comment=Нажать, вправо, вниз, вправо, отпустить.\nРосчерк Mozilla: нажать, вниз, вправо, отпустить. +Enabled=true +Name=Закрыть вкладку +Type=SIMPLE_ACTION_DATA + +[Data_3_6Actions] +ActionsCount=1 + +[Data_3_6Actions0] +DestinationWindow=2 +Input=Ctrl+W\n +Type=KEYBOARD_INPUT + +[Data_3_6Conditions] +Comment= +ConditionsCount=0 + +[Data_3_6Triggers] +Comment=Gesture_triggers +TriggersCount=2 + +[Data_3_6Triggers0] +GesturePointData=0,0.0625,0,0,0,0.0625,0.0625,0,0.125,0,0.125,0.0625,0,0.25,0,0.1875,0.0625,0,0.375,0,0.25,0.0625,0.5,0.5,0,0.3125,0.0625,0.5,0.5,0.125,0.375,0.0625,0.5,0.5,0.25,0.4375,0.0625,0.5,0.5,0.375,0.5,0.0625,0.5,0.5,0.5,0.5625,0.0625,0.5,0.5,0.625,0.625,0.0625,0.5,0.5,0.75,0.6875,0.0625,0.5,0.5,0.875,0.75,0.0625,0,0.5,1,0.8125,0.0625,0,0.625,1,0.875,0.0625,0,0.75,1,0.9375,0.0625,0,0.875,1,1,0,0,1,1 +Type=GESTURE + +[Data_3_6Triggers1] +GesturePointData=0,0.0625,0.5,0,0,0.0625,0.0625,0.5,0,0.125,0.125,0.0625,0.5,0,0.25,0.1875,0.0625,0.5,0,0.375,0.25,0.0625,0.5,0,0.5,0.3125,0.0625,0.5,0,0.625,0.375,0.0625,0.5,0,0.75,0.4375,0.0625,0.5,0,0.875,0.5,0.0625,0,0,1,0.5625,0.0625,0,0.125,1,0.625,0.0625,0,0.25,1,0.6875,0.0625,0,0.375,1,0.75,0.0625,0,0.5,1,0.8125,0.0625,0,0.625,1,0.875,0.0625,0,0.75,1,0.9375,0.0625,0,0.875,1,1,0,0,1,1 +Type=GESTURE + +[Data_3_7] +Comment=Нажать, вверх, отпустить.\nКонфликтует с росчерком Opera «На два уровня выше», который отключён по умолчанию. +Enabled=true +Name=Новая вкладка +Type=SIMPLE_ACTION_DATA + +[Data_3_7Actions] +ActionsCount=1 + +[Data_3_7Actions0] +DestinationWindow=2 +Input=Ctrl+Shift+N +Type=KEYBOARD_INPUT + +[Data_3_7Conditions] +Comment= +ConditionsCount=0 + +[Data_3_7Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_7Triggers0] +GesturePointData=0,0.125,-0.5,0.5,1,0.125,0.125,-0.5,0.5,0.875,0.25,0.125,-0.5,0.5,0.75,0.375,0.125,-0.5,0.5,0.625,0.5,0.125,-0.5,0.5,0.5,0.625,0.125,-0.5,0.5,0.375,0.75,0.125,-0.5,0.5,0.25,0.875,0.125,-0.5,0.5,0.125,1,0,0,0.5,0 +Type=GESTURE + +[Data_3_8] +Comment=Нажать, вниз, отпустить. +Enabled=true +Name=Новое окно +Type=SIMPLE_ACTION_DATA + +[Data_3_8Actions] +ActionsCount=1 + +[Data_3_8Actions0] +DestinationWindow=2 +Input=Ctrl+N\n +Type=KEYBOARD_INPUT + +[Data_3_8Conditions] +Comment= +ConditionsCount=0 + +[Data_3_8Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_8Triggers0] +GesturePointData=0,0.125,0.5,0.5,0,0.125,0.125,0.5,0.5,0.125,0.25,0.125,0.5,0.5,0.25,0.375,0.125,0.5,0.5,0.375,0.5,0.125,0.5,0.5,0.5,0.625,0.125,0.5,0.5,0.625,0.75,0.125,0.5,0.5,0.75,0.875,0.125,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[Data_3_9] +Comment=Нажать, вверх, вниз, отпустить. +Enabled=true +Name=Обновить +Type=SIMPLE_ACTION_DATA + +[Data_3_9Actions] +ActionsCount=1 + +[Data_3_9Actions0] +DestinationWindow=2 +Input=F5 +Type=KEYBOARD_INPUT + +[Data_3_9Conditions] +Comment= +ConditionsCount=0 + +[Data_3_9Triggers] +Comment=Gesture_triggers +TriggersCount=1 + +[Data_3_9Triggers0] +GesturePointData=0,0.0625,-0.5,0.5,1,0.0625,0.0625,-0.5,0.5,0.875,0.125,0.0625,-0.5,0.5,0.75,0.1875,0.0625,-0.5,0.5,0.625,0.25,0.0625,-0.5,0.5,0.5,0.3125,0.0625,-0.5,0.5,0.375,0.375,0.0625,-0.5,0.5,0.25,0.4375,0.0625,-0.5,0.5,0.125,0.5,0.0625,0.5,0.5,0,0.5625,0.0625,0.5,0.5,0.125,0.625,0.0625,0.5,0.5,0.25,0.6875,0.0625,0.5,0.5,0.375,0.75,0.0625,0.5,0.5,0.5,0.8125,0.0625,0.5,0.5,0.625,0.875,0.0625,0.5,0.5,0.75,0.9375,0.0625,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[General] +ColorScheme[$d] +ColorSchemeHash[$d] +Name[$d] +accentColorFromWallpaper[$d] +shadeSortColumn[$d] +widgetStyle[$d] + +[Gestures] +Disabled=true +MouseButton=2 +Timeout=300 + +[GesturesExclude] +Comment= +WindowsCount=0 + +[Icons] +Theme[$d] + +[KDE] +ColorScheme[$d] +LookAndFeelPackage[$d] +SingleClick[$d] +contrast[$d] +widgetStyle[$d] + +[Main] +AlreadyImported=defaults,kde32b1,konqueror_gestures_kde321 +Disabled=false +Version=2 + +[Voice] +Shortcut= + +[WM] +activeBackground[$d] +activeBlend[$d] +activeForeground[$d] +inactiveBackground[$d] +inactiveBlend[$d] +inactiveForeground[$d] diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kmixrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kmixrc new file mode 100644 index 0000000..833b785 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kmixrc @@ -0,0 +1,2 @@ +[$Version] +update_info=disable_kmix.upd:PlasmaVolume_DisableKMixAutostart diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/knfsshare b/core/melawy-skel-liveuser/src/etc/skel/.config/knfsshare new file mode 100644 index 0000000..8d95f3c --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/knfsshare @@ -0,0 +1,2 @@ +[General] +exportsFile=/etc/exports diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/konsolerc b/core/melawy-skel-liveuser/src/etc/skel/.config/konsolerc new file mode 100644 index 0000000..4565ffe --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/konsolerc @@ -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= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/konsolesshconfig b/core/melawy-skel-liveuser/src/etc/skel/.config/konsolesshconfig new file mode 100644 index 0000000..dc17d7c --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/konsolesshconfig @@ -0,0 +1,2 @@ +[Global plugin config] +manageProfile=false diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/krunnerrc b/core/melawy-skel-liveuser/src/etc/skel/.config/krunnerrc new file mode 100644 index 0000000..c36d549 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/krunnerrc @@ -0,0 +1,2 @@ +[PlasmaRunnerManager] +migrated=true diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kscreenlockerrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kscreenlockerrc new file mode 100644 index 0000000..4b9d263 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kscreenlockerrc @@ -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/ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/ksmserverrc b/core/melawy-skel-liveuser/src/etc/skel/.config/ksmserverrc new file mode 100644 index 0000000..90e0695 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/ksmserverrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/ksplashrc b/core/melawy-skel-liveuser/src/etc/skel/.config/ksplashrc new file mode 100644 index 0000000..2cf5b32 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/ksplashrc @@ -0,0 +1,2 @@ +[KSplash] +Theme=com.github.Melawy.Lera-Sugar.desktop diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/ktimezonedrc b/core/melawy-skel-liveuser/src/etc/skel/.config/ktimezonedrc new file mode 100644 index 0000000..781a3d4 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/ktimezonedrc @@ -0,0 +1,4 @@ +[TimeZones] +LocalZone=Asia/Yekaterinburg +ZoneinfoDir=/usr/share/zoneinfo +Zonetab=/usr/share/zoneinfo/zone.tab diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrc new file mode 100644 index 0000000..f643d55 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrulesrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrulesrc new file mode 100644 index 0000000..a65d21f --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kwinrulesrc @@ -0,0 +1,2 @@ +[$Version] +update_info=kwinrules.upd:replace-placement-string-to-enum,kwinrules.upd:use-virtual-desktop-ids diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/kxkbrc b/core/melawy-skel-liveuser/src/etc/skel/.config/kxkbrc new file mode 100644 index 0000000..93d6b58 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/kxkbrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/lightlyrc b/core/melawy-skel-liveuser/src/etc/skel/.config/lightlyrc new file mode 100644 index 0000000..9d828a0 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/lightlyrc @@ -0,0 +1,5 @@ +[Style] +DolphinSidebarOpacity=90 +TabDrawHighlight=true +ToolBarDrawItemSeparator=true +UnifiedTabBarKonsole=true diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/mc/ini b/core/melawy-skel-liveuser/src/etc/skel/.config/mc/ini new file mode 100644 index 0000000..5e89b13 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/mc/ini @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/mc/panels.ini b/core/melawy-skel-liveuser/src/etc/skel/.config/mc/panels.ini new file mode 100644 index 0000000..4601f4f --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/mc/panels.ini @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/distro_rss.xml b/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/distro_rss.xml new file mode 100644 index 0000000..2cb1059 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/distro_rss.xml @@ -0,0 +1,61 @@ + +Arch Linux: Recent news updateshttps://archlinux.org/news/The latest and greatest news from the Arch Linux distribution.en-usSun, 12 Feb 2023 14:54:22 +0000Switch to the base-devel meta package requires manual interventionhttps://archlinux.org/news/switch-to-the-base-devel-meta-package-requires-manual-intervention/<p>On February 2nd, the <code>base-devel</code> package group has been replaced by a meta package of the same name.<br /> +If you installed the <code>base-devel</code> package group prior to this date, explicitly re-install it to get the new <code>base-devel</code> package installed on the system: </p> +<p><code>pacman -Syu base-devel</code></p>Robin CandauSun, 12 Feb 2023 14:43:35 +0000tag:archlinux.org,2023-02-12:/news/switch-to-the-base-devel-meta-package-requires-manual-intervention/PHP 8.2 update and introduction of legacy branchhttps://archlinux.org/news/php-82-update-and-introduction-of-legacy-branch/<p>The <a href="https://archlinux.org/packages/extra/x86_64/php/">php</a> packages have been updated to the latest version 8.2. In +addition to this, a new set of <a href="https://archlinux.org/packages/extra/x86_64/php-legacy/">php-legacy</a> packages have been +introduced. These will follow the oldest but still <a href="https://www.php.net/supported-versions.php">actively supported +PHP</a> 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. <code>php</code> and <code>php-legacy</code> can be installed at the +same time as the latter uses a <code>-legacy</code> suffix for its binaries and +configuration files.</p> +<p>In addition to this, the <a href="https://archlinux.org/news/php-80-and-php-7-legacy-packages-are-available/">php7</a> packages have been removed as they +reached end of life. The <code>imap</code> extension will no longer be provided as +it relies on the <code>c-client</code> library which has been abandoned for many +years.</p>Pierre SchmitzFri, 13 Jan 2023 14:46:04 +0000tag:archlinux.org,2023-01-13:/news/php-82-update-and-introduction-of-legacy-branch/In memory of Jonathon Fernyhoughhttps://archlinux.org/news/in-memory-of-jonathon-fernyhough/<p>Arch Linux mourns the sudden loss of Jonathon Fernyhough, known in our community as <code>jonathon</code>, who passed away on Saturday night.</p> +<p>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.</p> +<p>On behalf of the wider Arch Linux community, our condolences go out to his family and friends.</p>Morten LinderudThu, 12 Jan 2023 12:12:16 +0000tag:archlinux.org,2023-01-12:/news/in-memory-of-jonathon-fernyhough/Removing python2 from the repositorieshttps://archlinux.org/news/removing-python2-from-the-repositories/<p>Python 2 went <a href="https://www.python.org/doc/sunset-python-2/">end of life</a> January 2020. Since then we have been actively cutting down the number of projects depending on <code>python2</code> in our repositories, and we have finally been able to drop it from our distribution. If you still have <code>python2</code> installed on your system consider removing it and any python2 package.</p> +<p>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 <a href="https://wiki.archlinux.org/title/Unofficial_user_repositories">unofficial user repository</a>.</p>Jelle van der WaaFri, 23 Sep 2022 08:42:36 +0000tag:archlinux.org,2022-09-23:/news/removing-python2-from-the-repositories/Arch Linux mailing list changeshttps://archlinux.org/news/arch-linux-mailing-list-changes/<p>As part of <a href="https://archlinux.org/todo/conversion-of-programs-that-use-python-2-to-python-3/">dropping Python 2</a> which is EOL, we have migrated our mailing lists from mailman2 to mailman3.</p> +<p>Rewriting of the "From" header and subject (to prepend the list name) have been disabled to keep the DKIM signature intact. This means "<a href="https://wiki.archlinux.org/title/General_guidelines#Reply_to_the_mailing_list">reply to mailing list</a>" must be used when replying to the list and you may need to update your filters and rules matching the "From" header.</p> +<p><strong>All existing subscriptions are migrated and you do not need to re-subscribe.</strong> For managing your subscriptions a new mailman3 account <a href="https://lists.archlinux.org/accounts/signup/">must be registered</a>.</p>Kristian KlausenFri, 16 Sep 2022 13:11:30 +0000tag:archlinux.org,2022-09-16:/news/arch-linux-mailing-list-changes/Grub bootloader upgrade and configuration incompatibilitieshttps://archlinux.org/news/grub-bootloader-upgrade-and-configuration-incompatibilities/<p>Recent changes in <code>grub</code> added a new command option to <code>fwsetup</code> 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 +<code>grub</code> package update it is advised to run both, installation and regeneration +of configuration:</p> +<pre><code>grub-install ... +grub-mkconfig -o /boot/grub/grub.cfg +</code></pre> +<p>For more specific information on <code>grub-install</code>, please refer to the wiki: +<a href="https://wiki.archlinux.org/title/GRUB#Installation">GRUB - ArchWiki</a></p>Christian HesseTue, 30 Aug 2022 20:15:25 +0000tag:archlinux.org,2022-08-30:/news/grub-bootloader-upgrade-and-configuration-incompatibilities/wxWidgets 3.2 update may need manual interventionhttps://archlinux.org/news/wxwidgets-32-update-may-need-manual-intervention/<p>wxWidgets 3.2 provides a Qt frontend in addition to the GTK3 one, so packages have been renamed from wxgtk-<em> to wxwidgets-</em>. +The GTK2 frontend is no longer provided. If you have wxgtk2 installed, the upgrade will fail with</p> +<p>error: failed to prepare transaction (could not satisfy dependencies) +:: removing wxgtk-common breaks dependency 'wxgtk-common' required by wxgtk2</p> +<p>In such case, uninstall wxgtk2 first and then proceed with the upgrade.</p>Antonio RojasThu, 14 Jul 2022 19:20:15 +0000tag:archlinux.org,2022-07-14:/news/wxwidgets-32-update-may-need-manual-intervention/Undone replacement of pipewire-media-session with wireplumberhttps://archlinux.org/news/undone-replacement-of-pipewire-media-session-with-wireplumber/<p>Two days ago the <code>wireplumber</code> package was made to replace <code>pipewire-media-session</code> as the latter session manager for PipeWire is considered dead upstream and will see no more releases. Unfortunately, this step was premature.</p> +<p>Our pipewire audio packages (<code>pipewire-alsa</code>, <code>pipewire-jack</code> and <code>pipewire-pulse</code>) 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.</p> +<p>WirePlumber disregards this mechanism and always configures PipeWire to grab audio devices, meaning users of PulseAudio or bare ALSA experience broken audio.</p> +<p>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 <code>wireplumber</code> got installed on your system, please reinstall <code>pipewire-media-session</code> and reboot to restore audio functionality.</p> +<pre><code>pacman -Syu pipewire-media-session +</code></pre>Jan Alexander SteffensThu, 12 May 2022 19:48:50 +0000tag:archlinux.org,2022-05-12:/news/undone-replacement-of-pipewire-media-session-with-wireplumber/QEMU >= 7.0.0 changes split package setuphttps://archlinux.org/news/qemu-700-changes-split-package-setup/<p>With the update to qemu 7.0.0 the package has been turned into a more +fine grained split package utilizing meta packages.</p> +<ul> +<li>The <code>qemu</code> package is now virtually provided by the meta packages + <code>qemu-base</code>, <code>qemu-desktop</code> and <code>qemu-full</code>.</li> +<li>The functionality of <code>qemu</code> prior to 7.0.0 is replaced by + <code>qemu-desktop</code></li> +<li>The functionality of <code>qemu-headless</code> is replaced by + <code>qemu-base</code></li> +<li>The functionality of <code>qemu-arch-extra</code> and <code>qemu-headless-arch-extra</code> + is replaced by <code>qemu-emulators-full</code></li> +<li>The meta package <code>qemu-full</code> provides all QEMU related + packages (excluding <code>qemu-guest-agent</code>)</li> +</ul>David RungeMon, 09 May 2022 10:35:57 +0000tag:archlinux.org,2022-05-09:/news/qemu-700-changes-split-package-setup/Keycloak 17.0.1-2 update requires manual reconfigurationhttps://archlinux.org/news/keycloak-1701-2-update-requires-manual-reconfiguration/<p>The <code>keycloak</code> package prior to version 17.0.1-2 was running with WildFly server. Since upstream officially moved to <a href="https://www.keycloak.org/2020/12/first-keycloak-x-release.adoc">Quarkus distribution</a>, Arch Linux follows this approach. This means some manual intervention is required for the upgrade.</p> +<p>The configuration needs to be adjusted from the old <code>.xml</code> format to the new <code>/etc/keycloak/keycloak.conf</code>.</p> +<p>Prior to the upgrade, stop the keycloak service, upgrade the package and migrate the configuration before starting:</p> +<pre><code>systemctl stop keycloak.service +pacman -Syu keycloak +# migrate configuration /etc/keycloak/keycloak.conf +systemctl start keycloak.service +</code></pre> +<p>See Keycloak <a href="https://www.keycloak.org/migration/migrating-to-quarkus">migration docs</a> and Keycloak Quarkus <a href="https://www.keycloak.org/server/configuration">server docs</a></p>Leonidas SpyropoulosFri, 25 Mar 2022 14:25:57 +0000tag:archlinux.org,2022-03-25:/news/keycloak-1701-2-update-requires-manual-reconfiguration/ \ No newline at end of file diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/octopi.conf b/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/octopi.conf new file mode 100644 index 0000000..bc0b661 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/octopi/octopi.conf @@ -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) diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/okularpartrc b/core/melawy-skel-liveuser/src/etc/skel/.config/okularpartrc new file mode 100644 index 0000000..b077f43 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/okularpartrc @@ -0,0 +1,2 @@ +[$Version] +update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-localerc b/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-localerc new file mode 100644 index 0000000..4ee83fb --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-localerc @@ -0,0 +1,2 @@ +[Formats] +LANG=ru_RU.UTF-8 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc b/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc new file mode 100644 index 0000000..3167780 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc @@ -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= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/plasmarc b/core/melawy-skel-liveuser/src/etc/skel/.config/plasmarc new file mode 100644 index 0000000..12fac49 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/plasmarc @@ -0,0 +1,5 @@ +[Theme] +name=Melawy + +[Wallpapers] +usersWallpapers= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/plasmashellrc b/core/melawy-skel-liveuser/src/etc/skel/.config/plasmashellrc new file mode 100644 index 0000000..f561ef8 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/plasmashellrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/powerdevilrc b/core/melawy-skel-liveuser/src/etc/skel/.config/powerdevilrc new file mode 100644 index 0000000..9559d5c --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/powerdevilrc @@ -0,0 +1,2 @@ +[BatteryManagement] +BatteryCriticalAction=1 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/powermanagementprofilesrc b/core/melawy-skel-liveuser/src/etc/skel/.config/powermanagementprofilesrc new file mode 100644 index 0000000..b5b905e --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/powermanagementprofilesrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/smb4krc b/core/melawy-skel-liveuser/src/etc/skel/.config/smb4krc new file mode 100644 index 0000000..b2173f9 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/smb4krc @@ -0,0 +1,2 @@ +[$Version] +update_info=smb4k_3_0_0.upd:Smb4K_3.0.0 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/spectaclerc b/core/melawy-skel-liveuser/src/etc/skel/.config/spectaclerc new file mode 100644 index 0000000..5a5554c --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/spectaclerc @@ -0,0 +1,2 @@ +[$Version] +update_info=spectacle_clipboard.upd:clipboard-settings-change,spectacle_rememberregion.upd:spectacle-migrate-rememberregion diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/systemsettingsrc b/core/melawy-skel-liveuser/src/etc/skel/.config/systemsettingsrc new file mode 100644 index 0000000..c579473 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/systemsettingsrc @@ -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 diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.dirs b/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.dirs new file mode 100644 index 0000000..5efc6c0 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.dirs @@ -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/Видео" diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.locale b/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.locale new file mode 100644 index 0000000..979c0ac --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/user-dirs.locale @@ -0,0 +1 @@ +ru_RU \ No newline at end of file diff --git a/core/melawy-skel-liveuser/src/etc/skel/.config/xsettingsd/xsettingsd.conf b/core/melawy-skel-liveuser/src/etc/skel/.config/xsettingsd/xsettingsd.conf new file mode 100644 index 0000000..9f04531 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.config/xsettingsd/xsettingsd.conf @@ -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" + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.face b/core/melawy-skel-liveuser/src/etc/skel/.face new file mode 100644 index 0000000..9cc0804 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.face differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.fonts.conf b/core/melawy-skel-liveuser/src/etc/skel/.fonts.conf new file mode 100644 index 0000000..1481ca5 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.fonts.conf @@ -0,0 +1,4 @@ + + + ~/.fonts + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.gtkrc-2.0 b/core/melawy-skel-liveuser/src/etc/skel/.gtkrc-2.0 new file mode 100644 index 0000000..4cba347 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.gtkrc-2.0 @@ -0,0 +1,11 @@ +gtk-theme-name="Colloid-Dark" +gtk-enable-animations=1 +gtk-primary-button-warps-slider=0 +gtk-toolbar-style=3 +gtk-menu-images=1 +gtk-button-images=1 +gtk-cursor-theme-size=24 +gtk-cursor-theme-name="Qogir-dark" +gtk-icon-theme-name="Colloid-dark" +gtk-font-name="Noto Sans, 10" + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Bash.desktop b/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Bash.desktop new file mode 100644 index 0000000..3204adc --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Bash.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Comment[ru_RU]= +Comment= +Exec=/usr/bin/bash -e %U +GenericName[ru_RU]= +GenericName= +MimeType=application/x-shellscript; +Name[ru_RU]=bash +Name=bash +NoDisplay=true +Path= +StartupNotify=true +Terminal=false +TerminalOptions= +Type=Application +X-DBUS-ServiceName= +X-DBUS-StartupType=none +X-KDE-SubstituteUID=false +X-KDE-Username= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Konsole.desktop b/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Konsole.desktop new file mode 100644 index 0000000..c515664 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/applications/Konsole.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Comment[ru_RU]= +Comment= +Exec=/usr/bin/konsole -e %U +GenericName[ru_RU]= +GenericName= +MimeType=application/x-shellscript; +Name[ru_RU]=konsole +Name=konsole +NoDisplay=true +Path= +StartupNotify=true +Terminal=false +TerminalOptions= +Type=Application +X-DBUS-ServiceName= +X-DBUS-StartupType=none +X-KDE-SubstituteUID=false +X-KDE-Username= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/dolphinstaterc b/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/dolphinstaterc new file mode 100644 index 0000000..41d711d --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/dolphinstaterc @@ -0,0 +1,21 @@ +[SettingsDialog] +HDMI-0 Height 1920x1080 HDMI-0=444 +HDMI-0 Width 1920x1080 HDMI-0=835 + +[State] +1920x1080 screen: Height=660 +1920x1080 screen: Width=1452 +1920x1080 screen: Window-Maximized=true +HDMI-0=HDMI-0 +HDMI-0 Height 1920x1080 HDMI-0=680 +HDMI-0 Width 1920x1080 HDMI-0=1022 +HDMI-0 XPosition 1920x1080 HDMI-0=509 +HDMI-0 YPosition 1920x1080 HDMI-0=191 +HDMI-1=HDMI-1 +HDMI-1 Height 1920x1080 HDMI-1=1007 +HDMI-1 Width 1920x1080 HDMI-1=1920 +HDMI-1 Window-Maximized 1920x1080 HDMI-1=true +HDMI-1 XPosition 1920x1080 HDMI-1=0 +HDMI-1 YPosition 1920x1080 HDMI-1=29 +RestorePositionForNextInstance=false +State=AAAA/wAAAAD9AAAAAwAAAAAAAADAAAADwPwCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAA/////wAAAAoBAAAD+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAuAAADwAAAAF0BAAADAAAAAQAAASoAAAPA/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAQAAAC4AAAPAAAABDwEAAAMAAAADAAAHgAAAAL78AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAHgAAAAAoBAAADAAAFlAAAA8AAAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/view_properties/global/.directory b/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/view_properties/global/.directory new file mode 100644 index 0000000..18bb844 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/dolphin/view_properties/global/.directory @@ -0,0 +1,6 @@ +[Dolphin] +SortOrder=1 +Timestamp=2023,3,14,2,44,9.373 +Version=4 +ViewMode=1 +VisibleRoles=text,size,modificationtime,CustomizedDetails,Details_text,Details_size,Details_modificationtime,Details_permissions,Details_owner,Details_group diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database new file mode 100644 index 0000000..b83ea12 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-shm b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-shm new file mode 100644 index 0000000..b9bf316 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-shm differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-wal b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-wal new file mode 100644 index 0000000..0614948 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/database-wal differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database new file mode 100644 index 0000000..9a47220 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-shm b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-shm new file mode 100644 index 0000000..97b2cc1 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-shm differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-wal b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-wal new file mode 100644 index 0000000..166b105 Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/test-backup/database-wal differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database new file mode 100644 index 0000000..c114f7c Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-shm b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-shm new file mode 100644 index 0000000..148f87c Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-shm differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-wal b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-wal new file mode 100644 index 0000000..585110a Binary files /dev/null and b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kactivitymanagerd/resources/working-backup/database-wal differ diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kded5/keyboard/session/layout_memory.xml b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kded5/keyboard/session/layout_memory.xml new file mode 100644 index 0000000..bee3fcb --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kded5/keyboard/session/layout_memory.xml @@ -0,0 +1,4 @@ + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Linux.colorscheme b/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Linux.colorscheme new file mode 100644 index 0000000..832b34a --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Linux.colorscheme @@ -0,0 +1,64 @@ +[Background] +Color=0,0,0 + +[BackgroundIntense] +Color=104,104,104 + +[Color0] +Color=0,0,0 + +[Color0Intense] +Color=104,104,104 + +[Color1] +Color=178,24,24 + +[Color1Intense] +Color=255,84,84 + +[Color2] +Color=24,178,24 + +[Color2Intense] +Color=84,255,84 + +[Color3] +Color=178,104,24 + +[Color3Intense] +Color=255,255,84 + +[Color4] +Color=24,24,178 + +[Color4Intense] +Color=84,84,255 + +[Color5] +Color=178,24,178 + +[Color5Intense] +Color=255,84,255 + +[Color6] +Color=24,178,178 + +[Color6Intense] +Color=84,255,255 + +[Color7] +Color=178,178,178 + +[Color7Intense] +Color=255,255,255 + +[Foreground] +Color=178,178,178 + +[ForegroundIntense] +Color=255,255,255 + +[General] +Description=Linux Colors +Opacity=0.85 +Wallpaper= diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Shell.profile b/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Shell.profile new file mode 100644 index 0000000..4ea5e84 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/konsole/Shell.profile @@ -0,0 +1,14 @@ +[Appearance] +ColorScheme=Linux +Font=DejaVu Sans Mono,10,-1,5,75,0,0,0,0,0,Bold + +[Cursor Options] +CursorShape=0 + +[General] +Name=Shell +Parent=FALLBACK/ + +[Terminal Features] +BlinkingCursorEnabled=true +BlinkingTextEnabled=true diff --git a/core/melawy-skel-liveuser/src/etc/skel/.local/share/kxmlgui5/dolphin/dolphinui.rc b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kxmlgui5/dolphin/dolphinui.rc new file mode 100644 index 0000000..6dcd6be --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.local/share/kxmlgui5/dolphin/dolphinui.rc @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Location Bar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Toolbar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/melawy-skel-liveuser/src/etc/skel/.nanorc b/core/melawy-skel-liveuser/src/etc/skel/.nanorc new file mode 100755 index 0000000..0108a07 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/.nanorc @@ -0,0 +1,2 @@ +include /usr/share/nano/*.nanorc +include /usr/share/nano-syntax-highlighting/*.nanorc diff --git a/core/melawy-skel-liveuser/src/etc/skel/Desktop/.directory b/core/melawy-skel-liveuser/src/etc/skel/Desktop/.directory new file mode 100644 index 0000000..11fe1e7 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/Desktop/.directory @@ -0,0 +1,4 @@ +[Desktop Entry] +Icon=user-desktop +Type=Directory + diff --git a/core/melawy-skel-liveuser/src/etc/skel/Desktop/calamares.desktop b/core/melawy-skel-liveuser/src/etc/skel/Desktop/calamares.desktop new file mode 100644 index 0000000..29a3266 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/Desktop/calamares.desktop @@ -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ệ thống +Icon[vi]=calamares +GenericName[vi]=Bộ cài đặt hệ thống +Comment[vi]=Calamares — Bộ cài đặt hệ thống +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 ── 系統安裝程式 diff --git a/core/melawy-skel-liveuser/src/etc/skel/LICENSE b/core/melawy-skel-liveuser/src/etc/skel/LICENSE new file mode 100644 index 0000000..0ad25db --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/core/melawy-skel-liveuser/src/etc/skel/user_commands.bash b/core/melawy-skel-liveuser/src/etc/skel/user_commands.bash new file mode 100755 index 0000000..a8f9f38 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/user_commands.bash @@ -0,0 +1,69 @@ +#!/bin/bash +# +# This file can contain commands that will be executed at the end of +# Melawy Linux install (online mode only) on the target system. +# The commands will be executed as root. +# +# This allows you to customize the installed system in several ways! +# +# If you add commands to this file, start the install process after +# saving this file. +# +# Tip: save your customized commands into a file on an internet server +# and fetch that file with command: +# +# wget -O ~/user_commands.bash "URL-referring-the-file" +# +# Ideas for customization: +# - install packages +# - remove packages +# - enable or disable system services +# - writing dotfiles under $HOME +# - etc. +# +# Example commands: +# +# pacman -S --noconfirm --needed gufw geany chromium +# pacman -Rsn --noconfirm xed +# systemctl enable ufw +# +# There are some limitations to the commands: +# - The 'pacman' commands mentioned above require option '--noconfirm', +# otherwise the install process may hang because pacman waits for a +# confirmation! +# - Installing packages with 'yay' does not work because yay may not +# be run as root. +# The 'makepkg' command suffers from the same limitation. +# This essentially blocks installing AUR packages here. +# +# Advanced tip (for ISOs since year 2022): +# To write files directly into $HOME, you can find the new username +# as the first parameter given to user_commands.bash, e.g. +# username="$1" +# Then you may write files under folder +# /home/$username +# +# For ISOs released before year 2022: +# Find your new username with command +# username=$(cat /tmp/new_username.txt) +# +# New installer feature at 2023-Feb-02: +# To help customizing calamares on the ISO, user_commands.bash will be called +# (as root) with 2 parameters: +# --iso-config +# "install_mode" (one of: online, offline, community) +# before starting the calamares installer. +# For example: +# bash ~/user_commands.bash --iso-config online +# +#---------------------------------------------------------------------------------- +# Full example (to try it, remove the first '#' from the lines below): +# +# #!/bin/bash +# +# # Note: needs ISO since year 2022 +# +# username="$1" +# echo "# Hello world!" >> /home/$username/.bashrc +# pacman -S --noconfirm --needed geany chromium libreoffice-fresh + diff --git a/core/melawy-skel-liveuser/src/etc/skel/user_pkglist.txt b/core/melawy-skel-liveuser/src/etc/skel/user_pkglist.txt new file mode 100755 index 0000000..a015992 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/user_pkglist.txt @@ -0,0 +1,2 @@ +# Add package names available from repositories (not from AUR) one package-name per line. +# Note: not for offline install. diff --git a/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/.directory b/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/.directory new file mode 100644 index 0000000..11fe1e7 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/.directory @@ -0,0 +1,4 @@ +[Desktop Entry] +Icon=user-desktop +Type=Directory + diff --git a/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/calamares.desktop b/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/calamares.desktop new file mode 100644 index 0000000..29a3266 --- /dev/null +++ b/core/melawy-skel-liveuser/src/etc/skel/Рабочий стол/calamares.desktop @@ -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ệ thống +Icon[vi]=calamares +GenericName[vi]=Bộ cài đặt hệ thống +Comment[vi]=Calamares — Bộ cài đặt hệ thống +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 ── 系統安裝程式