Added Desktop config
12
.github/workflows/build.yaml
vendored
|
@ -21,11 +21,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Packages via Pacman
|
- name: Install Packages via Pacman
|
||||||
run: pacman -Sy; pacman --noconfirm -S git archiso python python-pygithub github-cli p7zip
|
run: pacman -Syu --noconfirm; pacman --noconfirm -S git archiso python python-pygithub github-cli p7zip
|
||||||
- name: Replace packages and profile with Nvidia versions
|
- name: Replace packages and profile with Nvidia versions
|
||||||
run: |
|
run: |
|
||||||
cp iso/packages-nvidia.x86_64 iso/packages.x86_64
|
mv iso/packages-nvidia.x86_64 iso/packages.x86_64
|
||||||
cp iso/profiledef-nvidia.sh iso/profiledef.sh
|
mv iso/profiledef-nvidia.sh iso/profiledef.sh
|
||||||
|
mv iso/airootfs/etc/mkinitcpio.conf-nvidia iso/airootfs/etc/mkinitcpio.conf
|
||||||
- name: Build Nvidia image
|
- name: Build Nvidia image
|
||||||
run: mkarchiso -v iso/
|
run: mkarchiso -v iso/
|
||||||
- name: Upload Nvidia iso to the release
|
- name: Upload Nvidia iso to the release
|
||||||
|
@ -47,7 +48,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Packages via Pacman
|
- name: Install Packages via Pacman
|
||||||
run: pacman -Sy; pacman --noconfirm -S git archiso python python-pygithub github-cli p7zip
|
run: pacman -Syu --noconfirm; pacman --noconfirm -S git archiso python python-pygithub github-cli p7zip
|
||||||
|
- name: remove packages and profile of nvidia versions
|
||||||
|
run: |
|
||||||
|
rm -f iso/airootfs/etc/mkinitcpio.conf-nvidia
|
||||||
- name: Build non-Nvidia image
|
- name: Build non-Nvidia image
|
||||||
run: mkarchiso -v iso/
|
run: mkarchiso -v iso/
|
||||||
- name: Upload non-Nvidia iso to the release
|
- name: Upload non-Nvidia iso to the release
|
||||||
|
|
73
iso/airootfs/etc/mkinitcpio.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
# vim:set ft=sh
|
||||||
|
# MODULES
|
||||||
|
# The following modules are loaded before any boot hooks are
|
||||||
|
# run. Advanced users may wish to specify all system modules
|
||||||
|
# in this array. For instance:
|
||||||
|
# MODULES=(usbhid xhci_hcd)
|
||||||
|
MODULES=()
|
||||||
|
|
||||||
|
# BINARIES
|
||||||
|
# This setting includes any additional binaries a given user may
|
||||||
|
# wish into the CPIO image. This is run last, so it may be used to
|
||||||
|
# override the actual binaries included by a given hook
|
||||||
|
# BINARIES are dependency parsed, so you may safely ignore libraries
|
||||||
|
BINARIES=()
|
||||||
|
|
||||||
|
# FILES
|
||||||
|
# This setting is similar to BINARIES above, however, files are added
|
||||||
|
# as-is and are not parsed in any way. This is useful for config files.
|
||||||
|
FILES=()
|
||||||
|
|
||||||
|
# HOOKS
|
||||||
|
# This is the most important setting in this file. The HOOKS control the
|
||||||
|
# modules and scripts added to the image, and what happens at boot time.
|
||||||
|
# Order is important, and it is recommended that you do not change the
|
||||||
|
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
||||||
|
# help on a given hook.
|
||||||
|
# 'base' is _required_ unless you know precisely what you are doing.
|
||||||
|
# 'udev' is _required_ in order to automatically load modules
|
||||||
|
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
||||||
|
# Examples:
|
||||||
|
## This setup specifies all modules in the MODULES setting above.
|
||||||
|
## No RAID, lvm2, or encrypted root is needed.
|
||||||
|
# HOOKS=(base)
|
||||||
|
#
|
||||||
|
## This setup will autodetect all modules for your system and should
|
||||||
|
## work as a sane default
|
||||||
|
# HOOKS=(base udev autodetect modconf block filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup will generate a 'full' image which supports most systems.
|
||||||
|
## No autodetection is done.
|
||||||
|
# HOOKS=(base udev modconf block filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup assembles a mdadm array with an encrypted root file system.
|
||||||
|
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
|
||||||
|
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup loads an lvm2 volume group.
|
||||||
|
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
|
||||||
|
#
|
||||||
|
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||||
|
# usr and fsck hooks.
|
||||||
|
HOOKS=(base udev modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
||||||
|
|
||||||
|
# COMPRESSION
|
||||||
|
# Use this to compress the initramfs image. By default, zstd compression
|
||||||
|
# is used. Use 'cat' to create an uncompressed image.
|
||||||
|
COMPRESSION="zstd"
|
||||||
|
#COMPRESSION="gzip"
|
||||||
|
#COMPRESSION="bzip2"
|
||||||
|
#COMPRESSION="lzma"
|
||||||
|
#COMPRESSION="xz"
|
||||||
|
#COMPRESSION="lzop"
|
||||||
|
#COMPRESSION="lz4"
|
||||||
|
|
||||||
|
# COMPRESSION_OPTIONS
|
||||||
|
# Additional options for the compressor
|
||||||
|
#COMPRESSION_OPTIONS=()
|
||||||
|
|
||||||
|
# MODULES_DECOMPRESS
|
||||||
|
# Decompress kernel modules during initramfs creation.
|
||||||
|
# Enable to speedup boot process, disable to save RAM
|
||||||
|
# during early userspace. Switch (yes/no).
|
||||||
|
#MODULES_DECOMPRESS="yes"
|
73
iso/airootfs/etc/mkinitcpio.conf-nvidia
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
# vim:set ft=sh
|
||||||
|
# MODULES
|
||||||
|
# The following modules are loaded before any boot hooks are
|
||||||
|
# run. Advanced users may wish to specify all system modules
|
||||||
|
# in this array. For instance:
|
||||||
|
# MODULES=(usbhid xhci_hcd)
|
||||||
|
MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)
|
||||||
|
|
||||||
|
# BINARIES
|
||||||
|
# This setting includes any additional binaries a given user may
|
||||||
|
# wish into the CPIO image. This is run last, so it may be used to
|
||||||
|
# override the actual binaries included by a given hook
|
||||||
|
# BINARIES are dependency parsed, so you may safely ignore libraries
|
||||||
|
BINARIES=()
|
||||||
|
|
||||||
|
# FILES
|
||||||
|
# This setting is similar to BINARIES above, however, files are added
|
||||||
|
# as-is and are not parsed in any way. This is useful for config files.
|
||||||
|
FILES=()
|
||||||
|
|
||||||
|
# HOOKS
|
||||||
|
# This is the most important setting in this file. The HOOKS control the
|
||||||
|
# modules and scripts added to the image, and what happens at boot time.
|
||||||
|
# Order is important, and it is recommended that you do not change the
|
||||||
|
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
||||||
|
# help on a given hook.
|
||||||
|
# 'base' is _required_ unless you know precisely what you are doing.
|
||||||
|
# 'udev' is _required_ in order to automatically load modules
|
||||||
|
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
||||||
|
# Examples:
|
||||||
|
## This setup specifies all modules in the MODULES setting above.
|
||||||
|
## No RAID, lvm2, or encrypted root is needed.
|
||||||
|
# HOOKS=(base)
|
||||||
|
#
|
||||||
|
## This setup will autodetect all modules for your system and should
|
||||||
|
## work as a sane default
|
||||||
|
# HOOKS=(base udev autodetect modconf block filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup will generate a 'full' image which supports most systems.
|
||||||
|
## No autodetection is done.
|
||||||
|
# HOOKS=(base udev modconf block filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup assembles a mdadm array with an encrypted root file system.
|
||||||
|
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
|
||||||
|
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
|
||||||
|
#
|
||||||
|
## This setup loads an lvm2 volume group.
|
||||||
|
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
|
||||||
|
#
|
||||||
|
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||||
|
# usr and fsck hooks.
|
||||||
|
HOOKS=(base udev modconf memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
||||||
|
|
||||||
|
# COMPRESSION
|
||||||
|
# Use this to compress the initramfs image. By default, zstd compression
|
||||||
|
# is used. Use 'cat' to create an uncompressed image.
|
||||||
|
COMPRESSION="zstd"
|
||||||
|
#COMPRESSION="gzip"
|
||||||
|
#COMPRESSION="bzip2"
|
||||||
|
#COMPRESSION="lzma"
|
||||||
|
#COMPRESSION="xz"
|
||||||
|
#COMPRESSION="lzop"
|
||||||
|
#COMPRESSION="lz4"
|
||||||
|
|
||||||
|
# COMPRESSION_OPTIONS
|
||||||
|
# Additional options for the compressor
|
||||||
|
#COMPRESSION_OPTIONS=()
|
||||||
|
|
||||||
|
# MODULES_DECOMPRESS
|
||||||
|
# Decompress kernel modules during initramfs creation.
|
||||||
|
# Enable to speedup boot process, disable to save RAM
|
||||||
|
# during early userspace. Switch (yes/no).
|
||||||
|
#MODULES_DECOMPRESS="yes"
|
|
@ -1,2 +0,0 @@
|
||||||
HOOKS=(base udev modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
|
||||||
COMPRESSION="xz"
|
|
|
@ -1,9 +1,5 @@
|
||||||
# mkinitcpio preset file for the 'linux' package on archiso
|
# mkinitcpio preset file for the 'linux' package on archiso
|
||||||
|
|
||||||
PRESETS=('archiso')
|
PRESETS=('archiso')
|
||||||
|
|
||||||
ALL_kver='/boot/vmlinuz-linux'
|
ALL_kver='/boot/vmlinuz-linux'
|
||||||
archiso_config='/etc/mkinitcpio.conf.d/archiso.conf'
|
archiso_config='/etc/mkinitcpio.conf'
|
||||||
|
|
||||||
archiso_image="/boot/initramfs-linux.img"
|
archiso_image="/boot/initramfs-linux.img"
|
||||||
|
|
||||||
|
|
7
iso/airootfs/etc/mkinitcpio.d/parchlinux
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# mkinitcpio preset file for the kernel
|
||||||
|
ALL_kver='/boot/vmlinuz-linux'
|
||||||
|
#PRESETS=('default' 'fallback')
|
||||||
|
PRESETS=('default')
|
||||||
|
default_image="/boot/initramfs-linux.img"
|
||||||
|
#fallback_image="/boot/initramfs-linux-fallback.img"
|
||||||
|
#fallback_options="-S autodetect"
|
|
@ -0,0 +1,2 @@
|
||||||
|
[UserFeedback]
|
||||||
|
ApplicationStartCount=2
|
5
iso/airootfs/etc/skel/.config/QtProject.conf
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[FileDialog]
|
||||||
|
history=@Invalid()
|
||||||
|
lastVisited=file:///usr/share/pixmaps/
|
||||||
|
qtVersion=6.7.2
|
||||||
|
viewMode=Detail
|
17
iso/airootfs/etc/skel/.config/Trolltech.conf
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
[qt]
|
||||||
|
GUIEffects=none
|
||||||
|
KDE\contrast=7
|
||||||
|
KWinPalette\activeBackground=#31363b
|
||||||
|
KWinPalette\activeBlend=#fcfcfc
|
||||||
|
KWinPalette\activeForeground=#fcfcfc
|
||||||
|
KWinPalette\activeTitleBtnBg=#2a2e32
|
||||||
|
KWinPalette\frame=#2a2e32
|
||||||
|
KWinPalette\inactiveBackground=#2a2e32
|
||||||
|
KWinPalette\inactiveBlend=#a1a9b1
|
||||||
|
KWinPalette\inactiveForeground=#a1a9b1
|
||||||
|
KWinPalette\inactiveFrame=#2a2e32
|
||||||
|
KWinPalette\inactiveTitleBtnBg=#2a2e32
|
||||||
|
Palette\active=#fcfcfc, #31363b, #474d54, #3a4045, #141618, #24282b, #fcfcfc, #ffffff, #fcfcfc, #1b1e20, #2a2e32, #0f1012, #3daee9, #fcfcfc, #1d99f3, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #3daee9
|
||||||
|
Palette\disabled=#6e7173, #2f3338, #454c52, #393e44, #131517, #222629, #656768, #ffffff, #727679, #1a1d1f, #282c30, #0e0f11, #282c30, #6e7173, #1a4665, #443051, #212427, #000000, #31363b, #fcfcfc, #464b4f, #282c30
|
||||||
|
Palette\inactive=#fcfcfc, #31363b, #474d54, #3a4045, #141618, #24282b, #fcfcfc, #ffffff, #fcfcfc, #1b1e20, #2a2e32, #0f1012, #1f485e, #fcfcfc, #1d99f3, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #1f485e
|
||||||
|
font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1"
|
BIN
iso/airootfs/etc/skel/.config/dconf/user
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#da4453" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1 KiB |
28
iso/airootfs/etc/skel/.config/gtk-3.0/assets/close-hover.svg
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#ff98a2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 970 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 970 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 957 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 957 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 969 B |
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg viewBox="0 0 50 50"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
||||||
|
<title>Qt SVG Document</title>
|
||||||
|
<desc>Generated with Qt</desc>
|
||||||
|
<defs>
|
||||||
|
</defs>
|
||||||
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 969 B |
84
iso/airootfs/etc/skel/.config/gtk-3.0/colors.css
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
@define-color borders_breeze #5f6265;
|
||||||
|
@define-color content_view_bg_breeze #1b1e20;
|
||||||
|
@define-color error_color_backdrop_breeze #da4453;
|
||||||
|
@define-color error_color_breeze #da4453;
|
||||||
|
@define-color error_color_insensitive_backdrop_breeze #592930;
|
||||||
|
@define-color error_color_insensitive_breeze #592930;
|
||||||
|
@define-color insensitive_base_color_breeze #1a1d1f;
|
||||||
|
@define-color insensitive_base_fg_color_breeze #656768;
|
||||||
|
@define-color insensitive_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_borders_breeze #3a3d41;
|
||||||
|
@define-color insensitive_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_selected_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_selected_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_unfocused_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_unfocused_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_unfocused_selected_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_unfocused_selected_fg_color_breeze #6e7173;
|
||||||
|
@define-color link_color_breeze #1d99f3;
|
||||||
|
@define-color link_visited_color_breeze #9b59b6;
|
||||||
|
@define-color success_color_backdrop_breeze #27ae60;
|
||||||
|
@define-color success_color_breeze #27ae60;
|
||||||
|
@define-color success_color_insensitive_backdrop_breeze #1e4d34;
|
||||||
|
@define-color success_color_insensitive_breeze #1e4d34;
|
||||||
|
@define-color theme_base_color_breeze #1b1e20;
|
||||||
|
@define-color theme_bg_color_breeze #2a2e32;
|
||||||
|
@define-color theme_button_background_backdrop_breeze #31363b;
|
||||||
|
@define-color theme_button_background_backdrop_insensitive_breeze #2f3338;
|
||||||
|
@define-color theme_button_background_insensitive_breeze #2f3338;
|
||||||
|
@define-color theme_button_background_normal_breeze #31363b;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #6e7173;
|
||||||
|
@define-color theme_button_foreground_active_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_active_insensitive_breeze #6e7173;
|
||||||
|
@define-color theme_button_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_backdrop_insensitive_breeze #727679;
|
||||||
|
@define-color theme_button_foreground_insensitive_breeze #727679;
|
||||||
|
@define-color theme_button_foreground_normal_breeze #fcfcfc;
|
||||||
|
@define-color theme_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_background_backdrop_breeze #2a2e32;
|
||||||
|
@define-color theme_header_background_breeze #31363b;
|
||||||
|
@define-color theme_header_background_light_breeze #2a2e32;
|
||||||
|
@define-color theme_header_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_insensitive_breeze #fcfcfc;
|
||||||
|
@define-color theme_hovering_selected_bg_color_breeze #3daee9;
|
||||||
|
@define-color theme_selected_bg_color_breeze #3daee9;
|
||||||
|
@define-color theme_selected_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_text_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_background_backdrop_breeze #2a2e32;
|
||||||
|
@define-color theme_titlebar_background_breeze #31363b;
|
||||||
|
@define-color theme_titlebar_background_light_breeze #2a2e32;
|
||||||
|
@define-color theme_titlebar_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_base_color_breeze #1b1e20;
|
||||||
|
@define-color theme_unfocused_bg_color_breeze #2a2e32;
|
||||||
|
@define-color theme_unfocused_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_alt_breeze #1f485e;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #1f485e;
|
||||||
|
@define-color theme_unfocused_selected_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_text_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_view_bg_color_breeze #1a1d1f;
|
||||||
|
@define-color theme_unfocused_view_text_color_breeze #656768;
|
||||||
|
@define-color theme_view_active_decoration_color_breeze #3daee9;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #3daee9;
|
||||||
|
@define-color tooltip_background_breeze #31363b;
|
||||||
|
@define-color tooltip_border_breeze #64686b;
|
||||||
|
@define-color tooltip_text_breeze #fcfcfc;
|
||||||
|
@define-color unfocused_borders_breeze #5f6265;
|
||||||
|
@define-color unfocused_insensitive_borders_breeze #3a3d41;
|
||||||
|
@define-color warning_color_backdrop_breeze #f67400;
|
||||||
|
@define-color warning_color_breeze #f67400;
|
||||||
|
@define-color warning_color_insensitive_backdrop_breeze #633914;
|
||||||
|
@define-color warning_color_insensitive_breeze #633914;
|
1
iso/airootfs/etc/skel/.config/gtk-3.0/gtk.css
Normal file
|
@ -0,0 +1 @@
|
||||||
|
@import 'colors.css';
|
16
iso/airootfs/etc/skel/.config/gtk-3.0/settings.ini
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
[Settings]
|
||||||
|
gtk-application-prefer-dark-theme=true
|
||||||
|
gtk-button-images=true
|
||||||
|
gtk-cursor-theme-name=breeze_cursors
|
||||||
|
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=breeze-dark
|
||||||
|
gtk-menu-images=true
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=true
|
||||||
|
gtk-sound-theme-name=ocean
|
||||||
|
gtk-theme-name=Breeze
|
||||||
|
gtk-toolbar-style=3
|
||||||
|
gtk-xft-dpi=98304
|
71
iso/airootfs/etc/skel/.config/gtk-3.0/window_decorations.css
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
headerbar button.titlebutton.close, .titlebar button.titlebutton.close {
|
||||||
|
background-image: url("assets/close-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:hover, .titlebar button.titlebutton.close:hover {
|
||||||
|
background-image: url("assets/close-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:active, .titlebar button.titlebutton.close:active {
|
||||||
|
background-image: url("assets/close-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop, .titlebar button.titlebutton.close:backdrop {
|
||||||
|
background-image: url("assets/close-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:hover, .titlebar button.titlebutton.close:backdrop:hover {
|
||||||
|
background-image: url("assets/close-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:active, .titlebar button.titlebutton.close:backdrop:active {
|
||||||
|
background-image: url("assets/close-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize, .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:hover, .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:active, .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop, .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:hover, .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:active, .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize, .titlebar button.titlebutton.minimize {
|
||||||
|
background-image: url("assets/minimize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:hover, .titlebar button.titlebutton.minimize:hover {
|
||||||
|
background-image: url("assets/minimize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:active, .titlebar button.titlebutton.minimize:active {
|
||||||
|
background-image: url("assets/minimize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop, .titlebar button.titlebutton.minimize:backdrop {
|
||||||
|
background-image: url("assets/minimize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:hover, .titlebar button.titlebutton.minimize:backdrop:hover {
|
||||||
|
background-image: url("assets/minimize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:active, .titlebar button.titlebutton.minimize:backdrop:active {
|
||||||
|
background-image: url("assets/minimize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize, .maximized .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximized-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:hover, .maximized .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximized-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:active, .maximized .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximized-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximized-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:hover, .maximized .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximized-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:active, .maximized .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximized-backdrop-active.svg"); }
|
84
iso/airootfs/etc/skel/.config/gtk-4.0/colors.css
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
@define-color borders_breeze #5f6265;
|
||||||
|
@define-color content_view_bg_breeze #1b1e20;
|
||||||
|
@define-color error_color_backdrop_breeze #da4453;
|
||||||
|
@define-color error_color_breeze #da4453;
|
||||||
|
@define-color error_color_insensitive_backdrop_breeze #592930;
|
||||||
|
@define-color error_color_insensitive_breeze #592930;
|
||||||
|
@define-color insensitive_base_color_breeze #1a1d1f;
|
||||||
|
@define-color insensitive_base_fg_color_breeze #656768;
|
||||||
|
@define-color insensitive_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_borders_breeze #3a3d41;
|
||||||
|
@define-color insensitive_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_selected_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_selected_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_unfocused_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_unfocused_fg_color_breeze #6e7173;
|
||||||
|
@define-color insensitive_unfocused_selected_bg_color_breeze #282c30;
|
||||||
|
@define-color insensitive_unfocused_selected_fg_color_breeze #6e7173;
|
||||||
|
@define-color link_color_breeze #1d99f3;
|
||||||
|
@define-color link_visited_color_breeze #9b59b6;
|
||||||
|
@define-color success_color_backdrop_breeze #27ae60;
|
||||||
|
@define-color success_color_breeze #27ae60;
|
||||||
|
@define-color success_color_insensitive_backdrop_breeze #1e4d34;
|
||||||
|
@define-color success_color_insensitive_breeze #1e4d34;
|
||||||
|
@define-color theme_base_color_breeze #1b1e20;
|
||||||
|
@define-color theme_bg_color_breeze #2a2e32;
|
||||||
|
@define-color theme_button_background_backdrop_breeze #31363b;
|
||||||
|
@define-color theme_button_background_backdrop_insensitive_breeze #2f3338;
|
||||||
|
@define-color theme_button_background_insensitive_breeze #2f3338;
|
||||||
|
@define-color theme_button_background_normal_breeze #31363b;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #3daee9;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #335c72;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #6e7173;
|
||||||
|
@define-color theme_button_foreground_active_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_active_insensitive_breeze #6e7173;
|
||||||
|
@define-color theme_button_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_button_foreground_backdrop_insensitive_breeze #727679;
|
||||||
|
@define-color theme_button_foreground_insensitive_breeze #727679;
|
||||||
|
@define-color theme_button_foreground_normal_breeze #fcfcfc;
|
||||||
|
@define-color theme_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_background_backdrop_breeze #2a2e32;
|
||||||
|
@define-color theme_header_background_breeze #31363b;
|
||||||
|
@define-color theme_header_background_light_breeze #2a2e32;
|
||||||
|
@define-color theme_header_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_header_foreground_insensitive_breeze #fcfcfc;
|
||||||
|
@define-color theme_hovering_selected_bg_color_breeze #3daee9;
|
||||||
|
@define-color theme_selected_bg_color_breeze #3daee9;
|
||||||
|
@define-color theme_selected_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_text_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_background_backdrop_breeze #2a2e32;
|
||||||
|
@define-color theme_titlebar_background_breeze #31363b;
|
||||||
|
@define-color theme_titlebar_background_light_breeze #2a2e32;
|
||||||
|
@define-color theme_titlebar_foreground_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #fcfcfc;
|
||||||
|
@define-color theme_titlebar_foreground_insensitive_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_base_color_breeze #1b1e20;
|
||||||
|
@define-color theme_unfocused_bg_color_breeze #2a2e32;
|
||||||
|
@define-color theme_unfocused_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_alt_breeze #1f485e;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #1f485e;
|
||||||
|
@define-color theme_unfocused_selected_fg_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_text_color_breeze #fcfcfc;
|
||||||
|
@define-color theme_unfocused_view_bg_color_breeze #1a1d1f;
|
||||||
|
@define-color theme_unfocused_view_text_color_breeze #656768;
|
||||||
|
@define-color theme_view_active_decoration_color_breeze #3daee9;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #3daee9;
|
||||||
|
@define-color tooltip_background_breeze #31363b;
|
||||||
|
@define-color tooltip_border_breeze #64686b;
|
||||||
|
@define-color tooltip_text_breeze #fcfcfc;
|
||||||
|
@define-color unfocused_borders_breeze #5f6265;
|
||||||
|
@define-color unfocused_insensitive_borders_breeze #3a3d41;
|
||||||
|
@define-color warning_color_backdrop_breeze #f67400;
|
||||||
|
@define-color warning_color_breeze #f67400;
|
||||||
|
@define-color warning_color_insensitive_backdrop_breeze #633914;
|
||||||
|
@define-color warning_color_insensitive_breeze #633914;
|
1
iso/airootfs/etc/skel/.config/gtk-4.0/gtk.css
Normal file
|
@ -0,0 +1 @@
|
||||||
|
@import 'colors.css';
|
12
iso/airootfs/etc/skel/.config/gtk-4.0/settings.ini
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[Settings]
|
||||||
|
gtk-application-prefer-dark-theme=true
|
||||||
|
gtk-cursor-theme-name=breeze_cursors
|
||||||
|
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=breeze-dark
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=true
|
||||||
|
gtk-sound-theme-name=ocean
|
||||||
|
gtk-xft-dpi=98304
|
71
iso/airootfs/etc/skel/.config/gtk-4.0/window_decorations.css
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
headerbar button.titlebutton.close, .titlebar button.titlebutton.close {
|
||||||
|
background-image: url("assets/close-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:hover, .titlebar button.titlebutton.close:hover {
|
||||||
|
background-image: url("assets/close-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:active, .titlebar button.titlebutton.close:active {
|
||||||
|
background-image: url("assets/close-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop, .titlebar button.titlebutton.close:backdrop {
|
||||||
|
background-image: url("assets/close-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:hover, .titlebar button.titlebutton.close:backdrop:hover {
|
||||||
|
background-image: url("assets/close-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:active, .titlebar button.titlebutton.close:backdrop:active {
|
||||||
|
background-image: url("assets/close-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize, .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:hover, .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:active, .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop, .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:hover, .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:active, .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize, .titlebar button.titlebutton.minimize {
|
||||||
|
background-image: url("assets/minimize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:hover, .titlebar button.titlebutton.minimize:hover {
|
||||||
|
background-image: url("assets/minimize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:active, .titlebar button.titlebutton.minimize:active {
|
||||||
|
background-image: url("assets/minimize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop, .titlebar button.titlebutton.minimize:backdrop {
|
||||||
|
background-image: url("assets/minimize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:hover, .titlebar button.titlebutton.minimize:backdrop:hover {
|
||||||
|
background-image: url("assets/minimize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:active, .titlebar button.titlebutton.minimize:backdrop:active {
|
||||||
|
background-image: url("assets/minimize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize, .maximized .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximized-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:hover, .maximized .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximized-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:active, .maximized .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximized-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximized-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:hover, .maximized .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximized-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:active, .maximized .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximized-backdrop-active.svg"); }
|
6
iso/airootfs/etc/skel/.config/gtkrc
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# created by KDE Plasma, Thu Jul 18 09:33:55 2024
|
||||||
|
#
|
||||||
|
include "/usr/share/themes/Breeze/gtk-2.0/gtkrc"
|
||||||
|
|
||||||
|
gtk-theme-name="Breeze"
|
||||||
|
|
5
iso/airootfs/etc/skel/.config/gtkrc-2.0
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# created by KDE Plasma, Thu Jul 18 09:33:55 2024
|
||||||
|
#
|
||||||
|
|
||||||
|
gtk-alternative-button-order = 1
|
||||||
|
|
5
iso/airootfs/etc/skel/.config/kactivitymanagerd-statsrc
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-49194745-0190-4959-a3e5-48834dd50cb3]
|
||||||
|
ordering=preferred://browser,org.kde.kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,org.kde.discover.desktop
|
||||||
|
|
||||||
|
[Favorites-org.kde.plasma.kickoff.favorites.instance-3-global]
|
||||||
|
ordering=preferred://browser,org.kde.kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,org.kde.discover.desktop
|
5
iso/airootfs/etc/skel/.config/kactivitymanagerdrc
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[activities]
|
||||||
|
49194745-0190-4959-a3e5-48834dd50cb3=Default
|
||||||
|
|
||||||
|
[main]
|
||||||
|
currentActivity=49194745-0190-4959-a3e5-48834dd50cb3
|
41
iso/airootfs/etc/skel/.config/kconf_updaterc
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
updateInfoAdded=true
|
||||||
|
|
||||||
|
[gtkconfig.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
|
||||||
|
mtime=1720114484
|
||||||
|
|
||||||
|
[kwin.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=remove_deprecated_gtk4_option,kwin-6.0-reset-active-mouse-screen,kwin-6.0-delete-desktop-switching-shortcuts,kwin-6.0-remove-breeze-tabbox-default,kwin-6.1-remove-gridview-expose-shortcuts
|
||||||
|
mtime=1720113077
|
||||||
|
|
||||||
|
[migrate-calendar-to-plugin-id.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=kwin-6.1-remove-gridview-expose-shortcuts,migrate-calendar-plugins
|
||||||
|
mtime=1720113669
|
||||||
|
|
||||||
|
[plasma6.0-remove-dpi-settings.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=migrate-calendar-plugins,plasma6.0-remove-dpi-settings
|
||||||
|
mtime=1720113669
|
||||||
|
|
||||||
|
[plasma6.0-remove-old-shortcuts.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=plasma6.0-remove-dpi-settings,plasma6.0-remove-old-shortcuts
|
||||||
|
mtime=1720113669
|
||||||
|
|
||||||
|
[plasmashell-6.0-keep-custom-position-of-panels.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=plasma6.0-remove-old-shortcuts,plasmashell-6.0-keep-custom-position-of-panels
|
||||||
|
mtime=1720113669
|
||||||
|
|
||||||
|
[plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=plasmashell-6.0-keep-custom-position-of-panels,plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels
|
||||||
|
mtime=1720113669
|
||||||
|
|
||||||
|
[spectacle.upd]
|
||||||
|
ctime=1721300037
|
||||||
|
done=plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels,24.02.0-video_format,24.02.0-keep_old_save_location,24.02.0-rename_settings,24.02.0-keep_old_filename_templates,24.05.2-change_placeholder_format
|
||||||
|
mtime=1719938210
|
|
@ -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=3
|
||||||
|
ApplicationTime=29
|
|
@ -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=2509
|
20
iso/airootfs/etc/skel/.config/kdeconnect/certificate.pem
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDNjCCAh6gAwIBAgIUJwSyjDBX+sWvSmZ5lDP3kfrbhnQwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwVTEvMC0GA1UEAwwmXzNkZWUwZDZkX2U3OTdfNDBjNl84NGUyXzM0NjIzNjEz
|
||||||
|
ZTUwMl8xDDAKBgNVBAoMA0tERTEUMBIGA1UECwwLS0RFIENvbm5lY3QwHhcNMjMw
|
||||||
|
NzI4MTMyOTM4WhcNMzQwNDE3MTMyOTM4WjBVMS8wLQYDVQQDDCZfM2RlZTBkNmRf
|
||||||
|
ZTc5N180MGM2Xzg0ZTJfMzQ2MjM2MTNlNTAyXzEMMAoGA1UECgwDS0RFMRQwEgYD
|
||||||
|
VQQLDAtLREUgQ29ubmVjdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
||||||
|
ANS017s10LBp0xvlcLJZAZlGmmyY2t4YZ1KmqvHEXOUeqwBp/5zyyk7miFFY/QHL
|
||||||
|
V3KKUiFIw3HNrTCklqgilYM72hEiQeQLuNPA2wa3NpBKiFggxcSrdjPDzKsLleif
|
||||||
|
/0YT0hMCrJoatBc1uD4W7fhcbW2KuWGid8T6QwZSDPM+yduasSlSAx90kOo2LvgC
|
||||||
|
TwA4MqV67exDeXcJ+uvy+79X5ZgXsab7c+iKFZfKGFWQhyb69oaummyZyIPzoe6L
|
||||||
|
TOncpZRTIDV1jTtwd5qVn1lYfzczrmVujbYzlUlzMIX8sXS3Hxxx+9jYSXcXs63G
|
||||||
|
VsIy45duXF68duVoOrKuiQUCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAEZlQmpk/
|
||||||
|
LZlRDHTuZthR/TydSfYDLGZH52tsOtUPfahbUOWXCgFEUT5i8AbC9zY/gj39ABKV
|
||||||
|
4R6MzMbmOZWfnEHDjXCJGY36TvjP4m5f9rEYeNgqzXBz+q4AXQI02ALoTcH0ogY+
|
||||||
|
Hx1pNTIgO/NTXxv6zPVIyfNSLgK8zzkD43lBKgf6j9u80JO1AYVFXyfhTsTEKXnv
|
||||||
|
5xvH10LOibzdPnxjqB2T0/pB95dtSxRgVLvGsqH+sUBESDa16cVaI2BL2674xJzB
|
||||||
|
TzKEA/qMx2in7EcD5zDUUlQTFs02nGeR6TH0oLjgdgdO9RU5TnhubLNFaYMJH37n
|
||||||
|
NtsdxqiY6PO2JQ==
|
||||||
|
-----END CERTIFICATE-----
|
2
iso/airootfs/etc/skel/.config/kdeconnect/config
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[General]
|
||||||
|
name=ParchBox-x8664
|
27
iso/airootfs/etc/skel/.config/kdeconnect/privateKey.pem
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEpAIBAAKCAQEA1LTXuzXQsGnTG+VwslkBmUaabJja3hhnUqaq8cRc5R6rAGn/
|
||||||
|
nPLKTuaIUVj9ActXcopSIUjDcc2tMKSWqCKVgzvaESJB5Au408DbBrc2kEqIWCDF
|
||||||
|
xKt2M8PMqwuV6J//RhPSEwKsmhq0FzW4Phbt+FxtbYq5YaJ3xPpDBlIM8z7J25qx
|
||||||
|
KVIDH3SQ6jYu+AJPADgypXrt7EN5dwn66/L7v1flmBexpvtz6IoVl8oYVZCHJvr2
|
||||||
|
hq6abJnIg/Oh7otM6dyllFMgNXWNO3B3mpWfWVh/NzOuZW6NtjOVSXMwhfyxdLcf
|
||||||
|
HHH72NhJdxezrcZWwjLjl25cXrx25Wg6sq6JBQIDAQABAoIBAA0iVI7eChKWmj9G
|
||||||
|
+eA9YDylcCwj/SHJKnofSf9vQ1gvfloicXLwx/66u/Cf+NF3S6FKOruM6WqZy2et
|
||||||
|
RhNAPXCyzaqQrbZl5eYHas7dmcwrmgMtFOEpwDz+imEGcF2CoanjV+2uFNfYLcYg
|
||||||
|
Hk4RLuUO2f/xWLSXamNam7BkeSG84jAnQt6d4YkBk15Xe2yapi8bARR2cu4lbmdn
|
||||||
|
EAvvkplJ4G0NFbF8aKhZCvpqLEsBr/0QXFeZLZcQ4oFoPYwn8o3jyszwxHrjzJJn
|
||||||
|
Hlpa8Rbd6UnmqnZuxSIyBJzmk73ovOvmd7kMLZ37lwuRkTl0nUWQy+cZMn76x6w9
|
||||||
|
rfwpRBkCgYEA9mJQ5oLI3FEmW/Be5EG+h4K+zkZDHoh01MZctLJx/I4EnKgsPfdS
|
||||||
|
c9W32HIR6ZDpAwwU/lbzneet/aIH30n+QUbajIBAUarXfKSfhDXyHesoCd7uwkcp
|
||||||
|
oIxKWpFWHSEzTQYpMQ95UwGlF58SJVng4LpaiW4BZx87tvxl/aqKKBkCgYEA3QIL
|
||||||
|
jrgC7z0RX7rDhZooFaHumjFqXLVHpFY/dQGGyHMJ88bxJU1Ac/dyxhPi3tfCo6wL
|
||||||
|
KCgK/8sYMmv0tu4nsEhpsOexGxOvgud2I8X6adSbtPsnBkUxAs0RBEHFxF3ADmeK
|
||||||
|
HFMqTwgup2tlZKM0KKK8B3yfcyg8uBCGO7ahdc0CgYEAih9rww4mlHxZyMjkKYpB
|
||||||
|
ya4eUX1KO1+8P1xEtHglNrRXGYud4c84xf9V5V1tdUbrme24By2vvSIYhEvFpgPR
|
||||||
|
Kb8S3hk39ZCU5SdU1cV4ShV+iKoVp4xFZd+//y3i3Mmz/MYraXmHRmVxq+BdR9sv
|
||||||
|
GkzeXJTy7GCyFU9BzgdBFGECgYAToGbeWcEI9edhFPjgGHyOzz6dOt4zNXYTRgWE
|
||||||
|
oooRqwWrPHOV2HJs2gC7TnDLUWXbmx+yhTvU03hmoeethyDHKucX6rtzqB/iBCQd
|
||||||
|
sSs30sWxIMyqZeKgWQ21zxF9CsZPgSpmsYwEULmz7HmookWzhiAkmhCe7WfXAMCq
|
||||||
|
9OEJ0QKBgQCEKan+bfk8i4BZL5flnqXrgO3hlo7kfEPWm+TCFe1CdMYC+zCu9B4Q
|
||||||
|
4L6EamXQ8bK89I4o1+zMpInF/XIPQxD9s0PIum+Q1z2/w4n9BlXB6Lj2yF9n0p4j
|
||||||
|
4qHXoe4qcRwLSDo4ozQR6t9ezKrZF4mxR2XoykzevzjAAZPxV6cqbg==
|
||||||
|
-----END RSA PRIVATE KEY-----
|
2
iso/airootfs/etc/skel/.config/kded5rc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Module-device_automounter]
|
||||||
|
autoload=false
|
2
iso/airootfs/etc/skel/.config/kdedefaults/kcminputrc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Mouse]
|
||||||
|
cursorTheme=breeze_cursors
|
8
iso/airootfs/etc/skel/.config/kdedefaults/kdeglobals
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[General]
|
||||||
|
ColorScheme=BreezeDark
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Theme=breeze-dark
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
widgetStyle=Breeze
|
3
iso/airootfs/etc/skel/.config/kdedefaults/ksplashrc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[KSplash]
|
||||||
|
Engine=KSplashQML
|
||||||
|
Theme=org.kde.breezedark.desktop
|
4
iso/airootfs/etc/skel/.config/kdedefaults/kwinrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[org.kde.kdecoration2]
|
||||||
|
NoPlugin=false
|
||||||
|
library=org.kde.breeze
|
||||||
|
theme=Breeze
|
1
iso/airootfs/etc/skel/.config/kdedefaults/package
Normal file
|
@ -0,0 +1 @@
|
||||||
|
org.kde.breezedark.desktop
|
2
iso/airootfs/etc/skel/.config/kdedefaults/plasmarc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Theme]
|
||||||
|
name=default
|
170
iso/airootfs/etc/skel/.config/kdeglobals
Normal file
|
@ -0,0 +1,170 @@
|
||||||
|
[ColorEffects:Disabled]
|
||||||
|
ChangeSelectionColor=
|
||||||
|
Color=56,56,56
|
||||||
|
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=false
|
||||||
|
IntensityAmount=0
|
||||||
|
IntensityEffect=0
|
||||||
|
|
||||||
|
[Colors:Button]
|
||||||
|
BackgroundAlternate=30,87,116
|
||||||
|
BackgroundNormal=49,54,59
|
||||||
|
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:Complementary]
|
||||||
|
BackgroundAlternate=30,87,116
|
||||||
|
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:Header]
|
||||||
|
BackgroundAlternate=42,46,50
|
||||||
|
BackgroundNormal=49,54,59
|
||||||
|
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: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=30,87,116
|
||||||
|
BackgroundNormal=61,174,233
|
||||||
|
DecorationFocus=61,174,233
|
||||||
|
DecorationHover=61,174,233
|
||||||
|
ForegroundActive=252,252,252
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=253,188,75
|
||||||
|
ForegroundNegative=176,55,69
|
||||||
|
ForegroundNeutral=198,92,0
|
||||||
|
ForegroundNormal=252,252,252
|
||||||
|
ForegroundPositive=23,104,57
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[Colors:Tooltip]
|
||||||
|
BackgroundAlternate=42,46,50
|
||||||
|
BackgroundNormal=49,54,59
|
||||||
|
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:View]
|
||||||
|
BackgroundAlternate=35,38,41
|
||||||
|
BackgroundNormal=27,30,32
|
||||||
|
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:Window]
|
||||||
|
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
|
||||||
|
|
||||||
|
[General]
|
||||||
|
ColorSchemeHash=38f350e0530aaa58cc20a2cf2011a8a2d0c7a4fc
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
LookAndFeelPackage=org.kde.breezedark.desktop
|
||||||
|
|
||||||
|
[KFileDialog Settings]
|
||||||
|
Allow Expansion=false
|
||||||
|
Automatically select filename extension=true
|
||||||
|
Breadcrumb Navigation=true
|
||||||
|
Decoration position=2
|
||||||
|
LocationCombo Completionmode=5
|
||||||
|
PathCombo Completionmode=5
|
||||||
|
Show Bookmarks=false
|
||||||
|
Show Full Path=false
|
||||||
|
Show Inline Previews=true
|
||||||
|
Show Preview=false
|
||||||
|
Show Speedbar=true
|
||||||
|
Show hidden files=false
|
||||||
|
Sort by=Name
|
||||||
|
Sort directories first=true
|
||||||
|
Sort hidden files last=false
|
||||||
|
Sort reversed=false
|
||||||
|
Speedbar Width=140
|
||||||
|
View Style=DetailTree
|
||||||
|
|
||||||
|
[PreviewSettings]
|
||||||
|
MaximumRemoteSize=0
|
||||||
|
|
||||||
|
[WM]
|
||||||
|
activeBackground=49,54,59
|
||||||
|
activeBlend=252,252,252
|
||||||
|
activeForeground=252,252,252
|
||||||
|
inactiveBackground=42,46,50
|
||||||
|
inactiveBlend=161,169,177
|
||||||
|
inactiveForeground=161,169,177
|
257
iso/airootfs/etc/skel/.config/kglobalshortcutsrc
Normal file
|
@ -0,0 +1,257 @@
|
||||||
|
[ActivityManager]
|
||||||
|
_k_friendly_name=Activity Manager
|
||||||
|
switch-to-activity-49194745-0190-4959-a3e5-48834dd50cb3=none,none,Switch to activity "Default"
|
||||||
|
|
||||||
|
[KDE Keyboard Layout Switcher]
|
||||||
|
Switch to Last-Used Keyboard Layout=Meta+Alt+L,Meta+Alt+L,
|
||||||
|
Switch to Next Keyboard Layout=Meta+Alt+K,Meta+Alt+K,
|
||||||
|
_k_friendly_name=Keyboard Layout Switcher
|
||||||
|
|
||||||
|
[kaccess]
|
||||||
|
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Toggle Screen Reader On and Off
|
||||||
|
_k_friendly_name=Accessibility
|
||||||
|
|
||||||
|
[kcm_touchpad]
|
||||||
|
Disable Touchpad=Touchpad Off,Touchpad Off,
|
||||||
|
Enable Touchpad=Touchpad On,Touchpad On,
|
||||||
|
Toggle Touchpad=Touchpad Toggle\tMeta+Ctrl+Zenkaku Hankaku,Touchpad Toggle\tMeta+Ctrl+Zenkaku Hankaku,
|
||||||
|
_k_friendly_name=Touchpad
|
||||||
|
|
||||||
|
[kmix]
|
||||||
|
_k_friendly_name=Audio Volume
|
||||||
|
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Decrease Microphone Volume
|
||||||
|
decrease_volume=Volume Down,Volume Down,Decrease Volume
|
||||||
|
decrease_volume_small=Shift+Volume Down,Shift+Volume Down,Decrease Volume by 1%
|
||||||
|
increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Increase Microphone Volume
|
||||||
|
increase_volume=Volume Up,Volume Up,Increase Volume
|
||||||
|
increase_volume_small=Shift+Volume Up,Shift+Volume Up,Increase Volume by 1%
|
||||||
|
mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Mute Microphone
|
||||||
|
mute=Volume Mute,Volume Mute,Mute
|
||||||
|
|
||||||
|
[ksmserver]
|
||||||
|
Halt Without Confirmation=,,Shut Down Without Confirmation
|
||||||
|
Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Lock Session
|
||||||
|
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Show Logout Prompt
|
||||||
|
Log Out Without Confirmation=,,Log Out Without Confirmation
|
||||||
|
LogOut=,,Log Out
|
||||||
|
Reboot=,,Reboot
|
||||||
|
Reboot Without Confirmation=,,Reboot Without Confirmation
|
||||||
|
Shut Down=,,Shut Down
|
||||||
|
_k_friendly_name=KWin
|
||||||
|
|
||||||
|
[kwin]
|
||||||
|
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Activate Window Demanding Attention
|
||||||
|
Cycle Overview=none,none,Cycle through Overview and Grid View
|
||||||
|
Cycle Overview Opposite=none,none,Cycle through Grid View and Overview
|
||||||
|
Decrease Opacity=,,Decrease Opacity of Active Window by 5%
|
||||||
|
Edit Tiles=Meta+T,Meta+T,Toggle Tiles Editor
|
||||||
|
Grid View=Meta+G,Meta+G,Toggle Grid View
|
||||||
|
Increase Opacity=,,Increase Opacity of Active Window by 5%
|
||||||
|
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Kill Window
|
||||||
|
Move Tablet to Next Output=none,none,Move the tablet to the next output
|
||||||
|
MoveMouseToCenter=Meta+F6,Meta+F6,Move Mouse to Center
|
||||||
|
MoveMouseToFocus=Meta+F5,Meta+F5,Move Mouse to Focus
|
||||||
|
MoveZoomDown=none,none,Move Zoomed Area Downwards
|
||||||
|
MoveZoomLeft=none,none,Move Zoomed Area to Left
|
||||||
|
MoveZoomRight=none,none,Move Zoomed Area to Right
|
||||||
|
MoveZoomUp=none,none,Move Zoomed Area Upwards
|
||||||
|
Overview=Meta+W,Meta+W,Toggle Overview
|
||||||
|
Setup Window Shortcut=,,Setup Window Shortcut
|
||||||
|
Show Desktop=Meta+D,Meta+D,Peek at Desktop
|
||||||
|
Switch One Desktop Down=Meta+Ctrl+Down,Meta+Ctrl+Down,Switch One Desktop Down
|
||||||
|
Switch One Desktop Up=Meta+Ctrl+Up,Meta+Ctrl+Up,Switch One Desktop Up
|
||||||
|
Switch One Desktop to the Left=Meta+Ctrl+Left,Meta+Ctrl+Left,Switch One Desktop to the Left
|
||||||
|
Switch One Desktop to the Right=Meta+Ctrl+Right,Meta+Ctrl+Right,Switch One Desktop to the Right
|
||||||
|
Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Switch to Window Below
|
||||||
|
Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Switch to Window to the Left
|
||||||
|
Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Switch to Window to the Right
|
||||||
|
Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Switch to Window Above
|
||||||
|
Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Switch to Desktop 1
|
||||||
|
Switch to Desktop 10=,,Switch to Desktop 10
|
||||||
|
Switch to Desktop 11=,,Switch to Desktop 11
|
||||||
|
Switch to Desktop 12=,,Switch to Desktop 12
|
||||||
|
Switch to Desktop 13=,,Switch to Desktop 13
|
||||||
|
Switch to Desktop 14=,,Switch to Desktop 14
|
||||||
|
Switch to Desktop 15=,,Switch to Desktop 15
|
||||||
|
Switch to Desktop 16=,,Switch to Desktop 16
|
||||||
|
Switch to Desktop 17=,,Switch to Desktop 17
|
||||||
|
Switch to Desktop 18=,,Switch to Desktop 18
|
||||||
|
Switch to Desktop 19=,,Switch to Desktop 19
|
||||||
|
Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Switch to Desktop 2
|
||||||
|
Switch to Desktop 20=,,Switch to Desktop 20
|
||||||
|
Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Switch to Desktop 3
|
||||||
|
Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Switch to Desktop 4
|
||||||
|
Switch to Desktop 5=,,Switch to Desktop 5
|
||||||
|
Switch to Desktop 6=,,Switch to Desktop 6
|
||||||
|
Switch to Desktop 7=,,Switch to Desktop 7
|
||||||
|
Switch to Desktop 8=,,Switch to Desktop 8
|
||||||
|
Switch to Desktop 9=,,Switch to Desktop 9
|
||||||
|
Switch to Next Desktop=,,Switch to Next Desktop
|
||||||
|
Switch to Next Screen=,,Switch to Next Screen
|
||||||
|
Switch to Previous Desktop=,,Switch to Previous Desktop
|
||||||
|
Switch to Previous Screen=,,Switch to Previous Screen
|
||||||
|
Switch to Screen 0=,,Switch to Screen 0
|
||||||
|
Switch to Screen 1=,,Switch to Screen 1
|
||||||
|
Switch to Screen 2=,,Switch to Screen 2
|
||||||
|
Switch to Screen 3=,,Switch to Screen 3
|
||||||
|
Switch to Screen 4=,,Switch to Screen 4
|
||||||
|
Switch to Screen 5=,,Switch to Screen 5
|
||||||
|
Switch to Screen 6=,,Switch to Screen 6
|
||||||
|
Switch to Screen 7=,,Switch to Screen 7
|
||||||
|
Switch to Screen Above=,,Switch to Screen Above
|
||||||
|
Switch to Screen Below=,,Switch to Screen Below
|
||||||
|
Switch to Screen to the Left=,,Switch to Screen to the Left
|
||||||
|
Switch to Screen to the Right=,,Switch to Screen to the Right
|
||||||
|
Toggle Night Color=none,none,Suspend/Resume Night Light
|
||||||
|
Toggle Window Raise/Lower=,,Toggle Window Raise/Lower
|
||||||
|
Walk Through Windows=Alt+Tab,Alt+Tab,Walk Through Windows
|
||||||
|
Walk Through Windows (Reverse)=Alt+Shift+Tab,Alt+Shift+Tab,Walk Through Windows (Reverse)
|
||||||
|
Walk Through Windows Alternative=,,Walk Through Windows Alternative
|
||||||
|
Walk Through Windows Alternative (Reverse)=,,Walk Through Windows Alternative (Reverse)
|
||||||
|
Walk Through Windows of Current Application=Alt+`,Alt+`,Walk Through Windows of Current Application
|
||||||
|
Walk Through Windows of Current Application (Reverse)=Alt+~,Alt+~,Walk Through Windows of Current Application (Reverse)
|
||||||
|
Walk Through Windows of Current Application Alternative=,,Walk Through Windows of Current Application Alternative
|
||||||
|
Walk Through Windows of Current Application Alternative (Reverse)=,,Walk Through Windows of Current Application Alternative (Reverse)
|
||||||
|
Window Above Other Windows=,,Keep Window Above Others
|
||||||
|
Window Below Other Windows=,,Keep Window Below Others
|
||||||
|
Window Close=Alt+F4,Alt+F4,Close Window
|
||||||
|
Window Fullscreen=,,Make Window Fullscreen
|
||||||
|
Window Grow Horizontal=,,Expand Window Horizontally
|
||||||
|
Window Grow Vertical=,,Expand Window Vertically
|
||||||
|
Window Lower=,,Lower Window
|
||||||
|
Window Maximize=Meta+PgUp,Meta+PgUp,Maximize Window
|
||||||
|
Window Maximize Horizontal=,,Maximize Window Horizontally
|
||||||
|
Window Maximize Vertical=,,Maximize Window Vertically
|
||||||
|
Window Minimize=Meta+PgDown,Meta+PgDown,Minimize Window
|
||||||
|
Window Move=,,Move Window
|
||||||
|
Window Move Center=,,Move Window to the Center
|
||||||
|
Window No Border=,,Toggle Window Titlebar and Frame
|
||||||
|
Window On All Desktops=,,Keep Window on All Desktops
|
||||||
|
Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Window One Desktop Down
|
||||||
|
Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Window One Desktop Up
|
||||||
|
Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Window One Desktop to the Left
|
||||||
|
Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Window One Desktop to the Right
|
||||||
|
Window One Screen Down=,,Move Window One Screen Down
|
||||||
|
Window One Screen Up=,,Move Window One Screen Up
|
||||||
|
Window One Screen to the Left=,,Move Window One Screen to the Left
|
||||||
|
Window One Screen to the Right=,,Move Window One Screen to the Right
|
||||||
|
Window Operations Menu=Alt+F3,Alt+F3,Window Operations Menu
|
||||||
|
Window Pack Down=,,Move Window Down
|
||||||
|
Window Pack Left=,,Move Window Left
|
||||||
|
Window Pack Right=,,Move Window Right
|
||||||
|
Window Pack Up=,,Move Window Up
|
||||||
|
Window Quick Tile Bottom=Meta+Down,Meta+Down,Quick Tile Window to the Bottom
|
||||||
|
Window Quick Tile Bottom Left=,,Quick Tile Window to the Bottom Left
|
||||||
|
Window Quick Tile Bottom Right=,,Quick Tile Window to the Bottom Right
|
||||||
|
Window Quick Tile Left=Meta+Left,Meta+Left,Quick Tile Window to the Left
|
||||||
|
Window Quick Tile Right=Meta+Right,Meta+Right,Quick Tile Window to the Right
|
||||||
|
Window Quick Tile Top=Meta+Up,Meta+Up,Quick Tile Window to the Top
|
||||||
|
Window Quick Tile Top Left=,,Quick Tile Window to the Top Left
|
||||||
|
Window Quick Tile Top Right=,,Quick Tile Window to the Top Right
|
||||||
|
Window Raise=,,Raise Window
|
||||||
|
Window Resize=,,Resize Window
|
||||||
|
Window Shade=,,Shade Window
|
||||||
|
Window Shrink Horizontal=,,Shrink Window Horizontally
|
||||||
|
Window Shrink Vertical=,,Shrink Window Vertically
|
||||||
|
Window to Desktop 1=,,Window to Desktop 1
|
||||||
|
Window to Desktop 10=,,Window to Desktop 10
|
||||||
|
Window to Desktop 11=,,Window to Desktop 11
|
||||||
|
Window to Desktop 12=,,Window to Desktop 12
|
||||||
|
Window to Desktop 13=,,Window to Desktop 13
|
||||||
|
Window to Desktop 14=,,Window to Desktop 14
|
||||||
|
Window to Desktop 15=,,Window to Desktop 15
|
||||||
|
Window to Desktop 16=,,Window to Desktop 16
|
||||||
|
Window to Desktop 17=,,Window to Desktop 17
|
||||||
|
Window to Desktop 18=,,Window to Desktop 18
|
||||||
|
Window to Desktop 19=,,Window to Desktop 19
|
||||||
|
Window to Desktop 2=,,Window to Desktop 2
|
||||||
|
Window to Desktop 20=,,Window to Desktop 20
|
||||||
|
Window to Desktop 3=,,Window to Desktop 3
|
||||||
|
Window to Desktop 4=,,Window to Desktop 4
|
||||||
|
Window to Desktop 5=,,Window to Desktop 5
|
||||||
|
Window to Desktop 6=,,Window to Desktop 6
|
||||||
|
Window to Desktop 7=,,Window to Desktop 7
|
||||||
|
Window to Desktop 8=,,Window to Desktop 8
|
||||||
|
Window to Desktop 9=,,Window to Desktop 9
|
||||||
|
Window to Next Desktop=,,Window to Next Desktop
|
||||||
|
Window to Next Screen=Meta+Shift+Right,Meta+Shift+Right,Move Window to Next Screen
|
||||||
|
Window to Previous Desktop=,,Window to Previous Desktop
|
||||||
|
Window to Previous Screen=Meta+Shift+Left,Meta+Shift+Left,Move Window to Previous Screen
|
||||||
|
Window to Screen 0=,,Move Window to Screen 0
|
||||||
|
Window to Screen 1=,,Move Window to Screen 1
|
||||||
|
Window to Screen 2=,,Move Window to Screen 2
|
||||||
|
Window to Screen 3=,,Move Window to Screen 3
|
||||||
|
Window to Screen 4=,,Move Window to Screen 4
|
||||||
|
Window to Screen 5=,,Move Window to Screen 5
|
||||||
|
Window to Screen 6=,,Move Window to Screen 6
|
||||||
|
Window to Screen 7=,,Move Window to Screen 7
|
||||||
|
_k_friendly_name=KWin
|
||||||
|
view_actual_size=Meta+0,Meta+0,Zoom to Actual Size
|
||||||
|
view_zoom_in=Meta++\tMeta+=,Meta++\tMeta+=,Zoom In
|
||||||
|
view_zoom_out=Meta+-,Meta+-,Zoom Out
|
||||||
|
|
||||||
|
[mediacontrol]
|
||||||
|
_k_friendly_name=Media Controller
|
||||||
|
mediavolumedown=,,Media volume down
|
||||||
|
mediavolumeup=,,Media volume up
|
||||||
|
nextmedia=Media Next,Media Next,Media playback next
|
||||||
|
pausemedia=Media Pause,Media Pause,Pause media playback
|
||||||
|
playmedia=,,Play media playback
|
||||||
|
playpausemedia=Media Play,Media Play,Play/Pause media playback
|
||||||
|
previousmedia=Media Previous,Media Previous,Media playback previous
|
||||||
|
stopmedia=Media Stop,Media Stop,Stop media playback
|
||||||
|
|
||||||
|
[org_kde_powerdevil]
|
||||||
|
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Decrease Keyboard Brightness
|
||||||
|
Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Decrease Screen Brightness
|
||||||
|
Decrease Screen Brightness Small=Shift+Monitor Brightness Down,Shift+Monitor Brightness Down,Decrease Screen Brightness by 1%
|
||||||
|
Hibernate=Hibernate,Hibernate,Hibernate
|
||||||
|
Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Increase Keyboard Brightness
|
||||||
|
Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Increase Screen Brightness
|
||||||
|
Increase Screen Brightness Small=Shift+Monitor Brightness Up,Shift+Monitor Brightness Up,Increase Screen Brightness by 1%
|
||||||
|
PowerDown=Power Down,Power Down,Power Down
|
||||||
|
PowerOff=Power Off,Power Off,Power Off
|
||||||
|
Sleep=Sleep,Sleep,Suspend
|
||||||
|
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Toggle Keyboard Backlight
|
||||||
|
Turn Off Screen=none,none,Turn Off Screen
|
||||||
|
_k_friendly_name=Power Management
|
||||||
|
powerProfile=Battery\tMeta+B,Battery\tMeta+B,Switch Power Profile
|
||||||
|
|
||||||
|
[plasmashell]
|
||||||
|
_k_friendly_name=Plasma
|
||||||
|
activate application launcher=Meta\tAlt+F1,Meta\tAlt+F1,Activate Application Launcher
|
||||||
|
activate task manager entry 1=Meta+1,Meta+1,Activate Task Manager Entry 1
|
||||||
|
activate task manager entry 10=,Meta+0,Activate Task Manager Entry 10
|
||||||
|
activate task manager entry 2=Meta+2,Meta+2,Activate Task Manager Entry 2
|
||||||
|
activate task manager entry 3=Meta+3,Meta+3,Activate Task Manager Entry 3
|
||||||
|
activate task manager entry 4=Meta+4,Meta+4,Activate Task Manager Entry 4
|
||||||
|
activate task manager entry 5=Meta+5,Meta+5,Activate Task Manager Entry 5
|
||||||
|
activate task manager entry 6=Meta+6,Meta+6,Activate Task Manager Entry 6
|
||||||
|
activate task manager entry 7=Meta+7,Meta+7,Activate Task Manager Entry 7
|
||||||
|
activate task manager entry 8=Meta+8,Meta+8,Activate Task Manager Entry 8
|
||||||
|
activate task manager entry 9=Meta+9,Meta+9,Activate Task Manager Entry 9
|
||||||
|
clear-history=,,Clear Clipboard History
|
||||||
|
clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Automatic Action Popup Menu
|
||||||
|
cycle-panels=Meta+Alt+P,Meta+Alt+P,Move keyboard focus between panels
|
||||||
|
cycleNextAction=,,Next History Item
|
||||||
|
cyclePrevAction=,,Previous History Item
|
||||||
|
manage activities=Meta+Q,Meta+Q,Show Activity Switcher
|
||||||
|
repeat_action=,Meta+Ctrl+R,Manually Invoke Action on Current Clipboard
|
||||||
|
show dashboard=Ctrl+F12,Ctrl+F12,Show Desktop
|
||||||
|
show-barcode=,,Show Barcode…
|
||||||
|
show-on-mouse-pos=Meta+V,Meta+V,Show Clipboard Items at Mouse Position
|
||||||
|
stop current activity=Meta+S,Meta+S,Stop Current Activity
|
||||||
|
switch to next activity=,,Switch to Next Activity
|
||||||
|
switch to previous activity=,,Switch to Previous Activity
|
||||||
|
toggle do not disturb=,,Toggle do not disturb
|
||||||
|
|
||||||
|
[wacomtablet]
|
||||||
|
Map to fullscreen=Meta+Ctrl+F,Meta+Ctrl+F,Map to fullscreen
|
||||||
|
Map to screen 1=Meta+Ctrl+1,Meta+Ctrl+1,Map to screen 1
|
||||||
|
Map to screen 2=Meta+Ctrl+2,Meta+Ctrl+2,Map to screen 2
|
||||||
|
Next Profile=Meta+Ctrl+N,Meta+Ctrl+N,Next profile
|
||||||
|
Previous Profile=Meta+Ctrl+P,Meta+Ctrl+P,Previous Profile
|
||||||
|
Toggle screen map selection=Meta+Ctrl+M,Meta+Ctrl+M,Toggle between all screens
|
||||||
|
Toggle stylus mode=Meta+Ctrl+S,Meta+Ctrl+S,Toggle the Stylus Tool Relative/Absolute
|
||||||
|
Toggle touch tool=Meta+Ctrl+T,Meta+Ctrl+T,Enable/Disable the Touch Tool
|
||||||
|
_k_friendly_name=Wacom Tablet
|
7
iso/airootfs/etc/skel/.config/kiorc
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[Confirmations]
|
||||||
|
ConfirmDelete=true
|
||||||
|
ConfirmEmptyTrash=true
|
||||||
|
ConfirmTrash=false
|
||||||
|
|
||||||
|
[Executable scripts]
|
||||||
|
behaviourOnLaunch=alwaysAsk
|
8
iso/airootfs/etc/skel/.config/konsolerc
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[General]
|
||||||
|
ConfigVersion=1
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[UiSettings]
|
||||||
|
ColorScheme=
|
2
iso/airootfs/etc/skel/.config/konsolesshconfig
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Global plugin config]
|
||||||
|
manageProfile=false
|
2
iso/airootfs/etc/skel/.config/ksmserverrc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[General]
|
||||||
|
loginMode=emptySession
|
4
iso/airootfs/etc/skel/.config/ktimezonedrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[TimeZones]
|
||||||
|
LocalZone=America/New_York
|
||||||
|
ZoneinfoDir=/usr/share/zoneinfo
|
||||||
|
Zonetab=/usr/share/zoneinfo/zone.tab
|
6
iso/airootfs/etc/skel/.config/ktrashrc
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[/home/sohrab/.local/share/Trash]
|
||||||
|
Days=7
|
||||||
|
LimitReachedAction=0
|
||||||
|
Percent=10
|
||||||
|
UseSizeLimit=true
|
||||||
|
UseTimeLimit=false
|
49
iso/airootfs/etc/skel/.config/kwinoutputconfig.json
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"autoRotation": "InTabletMode",
|
||||||
|
"brightness": 1,
|
||||||
|
"colorProfileSource": "sRGB",
|
||||||
|
"connectorName": "VGA-1",
|
||||||
|
"edidHash": "612afdef947131f0d2a23a0572c62efc",
|
||||||
|
"edidIdentifier": "VBX 0 50792000 1 1990 0",
|
||||||
|
"highDynamicRange": false,
|
||||||
|
"iccProfilePath": "",
|
||||||
|
"mode": {
|
||||||
|
"height": 775,
|
||||||
|
"refreshRate": 59968,
|
||||||
|
"width": 1600
|
||||||
|
},
|
||||||
|
"overscan": 0,
|
||||||
|
"rgbRange": "Automatic",
|
||||||
|
"scale": 1,
|
||||||
|
"sdrBrightness": 200,
|
||||||
|
"sdrGamutWideness": 0,
|
||||||
|
"transform": "Normal",
|
||||||
|
"vrrPolicy": "Automatic",
|
||||||
|
"wideColorGamut": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name": "outputs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"lidClosed": false,
|
||||||
|
"outputs": [
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"outputIndex": 0,
|
||||||
|
"position": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"priority": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name": "setups"
|
||||||
|
}
|
||||||
|
]
|
13
iso/airootfs/etc/skel/.config/kwinrc
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[Desktops]
|
||||||
|
Id_1=948fbd8b-7ae7-4d7c-8421-ed70ac60fcbc
|
||||||
|
Number=1
|
||||||
|
Rows=1
|
||||||
|
|
||||||
|
[Tiling]
|
||||||
|
padding=4
|
||||||
|
|
||||||
|
[Tiling][21dd97da-ff66-5c67-b60e-9669809c6e24]
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
[Xwayland]
|
||||||
|
Scale=1
|
BIN
iso/airootfs/etc/skel/.config/libaccounts-glib/accounts.db
Normal file
BIN
iso/airootfs/etc/skel/.config/libaccounts-glib/accounts.db-shm
Normal file
2
iso/airootfs/etc/skel/.config/plasma-localerc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Formats]
|
||||||
|
LANG=en_US.UTF-8
|
|
@ -0,0 +1,178 @@
|
||||||
|
[ActionPlugins][0]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[ActionPlugins][1]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[Containments][1]
|
||||||
|
ItemGeometries-1600x775=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=49194745-0190-4959-a3e5-48834dd50cb3
|
||||||
|
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]
|
||||||
|
positions={"1600x775":["2"\\,"14"\\,"desktop:/net.lutris.Lutris.desktop"\\,"1"\\,"0"\\,"desktop:/steam.desktop"\\,"0"\\,"0"]}
|
||||||
|
sortMode=-1
|
||||||
|
|
||||||
|
[Containments][1][Wallpaper][org.kde.image][General]
|
||||||
|
Image=/usr/share/wallpapers/Parch-wallpaper/Parch-wallpaper-6-Light.jpg
|
||||||
|
PreviewImage=/usr/share/wallpapers/Parch-wallpaper/Parch-wallpaper-6-Light.jpg
|
||||||
|
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][21]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
|
[Containments][2][Applets][21][Configuration][Appearance]
|
||||||
|
fontWeight=400
|
||||||
|
|
||||||
|
[Containments][2][Applets][22]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.showdesktop
|
||||||
|
|
||||||
|
[Containments][2][Applets][3]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.kickoff
|
||||||
|
|
||||||
|
[Containments][2][Applets][3][Configuration]
|
||||||
|
PreloadWeight=100
|
||||||
|
popupHeight=510
|
||||||
|
popupWidth=647
|
||||||
|
|
||||||
|
[Containments][2][Applets][3][Configuration][ConfigDialog]
|
||||||
|
DialogHeight=540
|
||||||
|
DialogWidth=720
|
||||||
|
|
||||||
|
[Containments][2][Applets][3][Configuration][General]
|
||||||
|
favoritesPortedToKAstats=true
|
||||||
|
icon=/usr/share/pixmaps/parch-logo.svg
|
||||||
|
systemFavorites=suspend\\,hibernate\\,reboot\\,shutdown
|
||||||
|
|
||||||
|
[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,applications:org.manjaro.pamac.manager.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=55
|
||||||
|
SystrayContainmentId=8
|
||||||
|
|
||||||
|
[Containments][2][General]
|
||||||
|
AppletOrder=3;4;5;6;7;21;22
|
||||||
|
|
||||||
|
[Containments][8]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=-1
|
||||||
|
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.manage-inputmethod
|
||||||
|
|
||||||
|
[Containments][8][Applets][11]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.printmanager
|
||||||
|
|
||||||
|
[Containments][8][Applets][12]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kdeconnect
|
||||||
|
|
||||||
|
[Containments][8][Applets][13]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.vault
|
||||||
|
|
||||||
|
[Containments][8][Applets][14]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
|
[Containments][8][Applets][15]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.cameraindicator
|
||||||
|
|
||||||
|
[Containments][8][Applets][16]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kscreen
|
||||||
|
|
||||||
|
[Containments][8][Applets][17]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][8][Applets][18]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
|
[Containments][8][Applets][19]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
|
[Containments][8][Applets][19][Configuration]
|
||||||
|
PreloadWeight=55
|
||||||
|
|
||||||
|
[Containments][8][Applets][20]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
|
[Containments][8][Applets][20][Configuration][General]
|
||||||
|
migrated=true
|
||||||
|
|
||||||
|
[Containments][8][Applets][23]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.brightness
|
||||||
|
|
||||||
|
[Containments][8][Applets][24]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
|
[Containments][8][Applets][25]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[Containments][8][Applets][9]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardlayout
|
||||||
|
|
||||||
|
[Containments][8][General]
|
||||||
|
extraItems=org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.printmanager,org.kde.kdeconnect,org.kde.plasma.vault,org.kde.plasma.devicenotifier,org.kde.plasma.cameraindicator,org.kde.plasma.mediacontroller,org.kde.kscreen,org.kde.plasma.keyboardindicator,org.kde.plasma.notifications,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.volume,org.kde.plasma.brightness,org.kde.plasma.battery,org.kde.plasma.networkmanagement
|
||||||
|
knownItems=org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.printmanager,org.kde.kdeconnect,org.kde.plasma.vault,org.kde.plasma.devicenotifier,org.kde.plasma.cameraindicator,org.kde.plasma.mediacontroller,org.kde.kscreen,org.kde.plasma.keyboardindicator,org.kde.plasma.notifications,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.volume,org.kde.plasma.brightness,org.kde.plasma.battery,org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[ScreenMapping]
|
||||||
|
itemsOnDisabledScreens=
|
||||||
|
screenMapping=desktop:/net.lutris.Lutris.desktop,0,49194745-0190-4959-a3e5-48834dd50cb3,desktop:/steam.desktop,0,49194745-0190-4959-a3e5-48834dd50cb3
|
2
iso/airootfs/etc/skel/.config/plasmarc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Wallpapers]
|
||||||
|
usersWallpapers=
|
8
iso/airootfs/etc/skel/.config/plasmashellrc
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[PlasmaViews][Panel 2]
|
||||||
|
floating=1
|
||||||
|
|
||||||
|
[PlasmaViews][Panel 2][Defaults]
|
||||||
|
thickness=44
|
||||||
|
|
||||||
|
[Updates]
|
||||||
|
performed=/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/systemloadviewer_systemmonitor.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/containmentactions_middlebutton.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/digitalclock_migrate_showseconds_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.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/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.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/migrate_font_weights.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/move_desktop_layout_config.js
|
2
iso/airootfs/etc/skel/.config/powermanagementprofilesrc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Migration]
|
||||||
|
MigratedProfilesToPlasma6=powerdevilrc
|
BIN
iso/airootfs/etc/skel/.config/pulse/cookie
Normal file
14
iso/airootfs/etc/skel/.config/xsettingsd/xsettingsd.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
Gdk/UnscaledDPI 98304
|
||||||
|
Gdk/WindowScalingFactor 1
|
||||||
|
Gtk/EnableAnimations 1
|
||||||
|
Gtk/DecorationLayout "icon:minimize,maximize,close"
|
||||||
|
Net/ThemeName "Breeze-Dark"
|
||||||
|
Gtk/PrimaryButtonWarpsSlider 1
|
||||||
|
Gtk/ToolbarStyle 3
|
||||||
|
Gtk/MenuImages 1
|
||||||
|
Gtk/ButtonImages 1
|
||||||
|
Gtk/CursorThemeSize 24
|
||||||
|
Gtk/CursorThemeName "breeze_cursors"
|
||||||
|
Net/SoundThemeName "ocean"
|
||||||
|
Net/IconThemeName "breeze-dark"
|
||||||
|
Gtk/FontName "Noto Sans, 10"
|
48
iso/airootfs/etc/skel/Desktop/net.lutris.Lutris.desktop
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Name[ar]=لوترس
|
||||||
|
Name[de]=Lutris
|
||||||
|
Name[el]=Lutris
|
||||||
|
Name[es]=Lutris
|
||||||
|
Name[fr]=Lutris
|
||||||
|
Name[hr]=Lutris
|
||||||
|
Name[it]=Lutris
|
||||||
|
Name[ka]=Lutris
|
||||||
|
Name[nl]=Lutris
|
||||||
|
Name[pl]=Lutris
|
||||||
|
Name[pt_BR]=Lutris
|
||||||
|
Name[ru]=Lutris
|
||||||
|
Name[zh_CN]=Lutris
|
||||||
|
Name=Lutris
|
||||||
|
StartupWMClass=Lutris
|
||||||
|
Comment[ar]=منصَّة حفظ ألعاب الفيديو
|
||||||
|
Comment[el]=Πλατφόρμα Διατήρησης Βιντεοπαιχνιδιών
|
||||||
|
Comment[es]=Plataforma de Preservación de Videojuegos
|
||||||
|
Comment[fr]=Plateforme de préservation de jeux vidéo
|
||||||
|
Comment[it]=Piattaforma di Preservazione di Videogiochi
|
||||||
|
Comment[ka]=პლატფორმა ვიდეოთამაშების შესანახად
|
||||||
|
Comment[nl]=Videogame-bewaarplatform
|
||||||
|
Comment[ru]=Площадка для сохранения видеоигр
|
||||||
|
Comment[tr]=Video Oyunu Depolama Platformu
|
||||||
|
Comment[zh_CN]=电子游戏保存平台
|
||||||
|
Comment=Video Game Preservation Platform
|
||||||
|
Categories=Game;
|
||||||
|
Keywords[ar]=gaming;wine;emulator;لعب;واين;محاكي;
|
||||||
|
Keywords[de]=gaming;spielen;wine;emulator;
|
||||||
|
Keywords[el]=gaming;wine;εξομοιωτής;
|
||||||
|
Keywords[es]=juego;wine;emulador;
|
||||||
|
Keywords[fr]=gaming;wine;emulator;jeux;émulateur;
|
||||||
|
Keywords[hr]=igranje;wine;emulator;
|
||||||
|
Keywords[it]=gaming;wine;emulator;giocare:emulatore;
|
||||||
|
Keywords[ka]=gaming;wine;emulator;თამაშები;
|
||||||
|
Keywords[nl]=gaming;spellen;wine;emulator;
|
||||||
|
Keywords[pt_BR]=gaming;wine;emulação
|
||||||
|
Keywords[ru]=gaming;wine;emulator;
|
||||||
|
Keywords[tr]=oyun;wine;emülatör
|
||||||
|
Keywords[zh_CN]=游戏;wine;模拟器;
|
||||||
|
Keywords=gaming;wine;emulator;
|
||||||
|
Exec=lutris %U
|
||||||
|
Icon=lutris
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
MimeType=x-scheme-handler/lutris;
|
||||||
|
X-GNOME-UsesNotifications=true
|
282
iso/airootfs/etc/skel/Desktop/steam.desktop
Normal file
|
@ -0,0 +1,282 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=Steam (Runtime)
|
||||||
|
Comment=Application for managing and playing games on Steam
|
||||||
|
Comment[pt_BR]=Aplicativo para jogar e gerenciar jogos no Steam
|
||||||
|
Comment[bg]=Приложение за ръководене и пускане на игри в Steam
|
||||||
|
Comment[cs]=Aplikace pro spravování a hraní her ve službě Steam
|
||||||
|
Comment[da]=Applikation til at håndtere og spille spil på Steam
|
||||||
|
Comment[nl]=Applicatie voor het beheer en het spelen van games op Steam
|
||||||
|
Comment[fi]=Steamin pelien hallintaan ja pelaamiseen tarkoitettu sovellus
|
||||||
|
Comment[fr]=Application de gestion et d'utilisation des jeux sur Steam
|
||||||
|
Comment[de]=Anwendung zum Verwalten und Spielen von Spielen auf Steam
|
||||||
|
Comment[el]=Εφαρμογή διαχείρισης παιχνιδιών στο Steam
|
||||||
|
Comment[hu]=Alkalmazás a Steames játékok futtatásához és kezeléséhez
|
||||||
|
Comment[it]=Applicazione per la gestione e l'esecuzione di giochi su Steam
|
||||||
|
Comment[ja]=Steam 上でゲームを管理&プレイするためのアプリケーション
|
||||||
|
Comment[ko]=Steam에 있는 게임을 관리하고 플레이할 수 있는 응용 프로그램
|
||||||
|
Comment[no]=Program for å administrere og spille spill på Steam
|
||||||
|
Comment[pt_PT]=Aplicação para organizar e executar jogos no Steam
|
||||||
|
Comment[pl]=Aplikacja do zarządzania i uruchamiania gier na platformie Steam
|
||||||
|
Comment[ro]=Aplicație pentru administrarea și jucatul jocurilor pe Steam
|
||||||
|
Comment[ru]=Приложение для игр и управления играми в Steam
|
||||||
|
Comment[es]=Aplicación para administrar y ejecutar juegos en Steam
|
||||||
|
Comment[sv]=Ett program för att hantera samt spela spel på Steam
|
||||||
|
Comment[zh_CN]=管理和进行 Steam 游戏的应用程序
|
||||||
|
Comment[zh_TW]=管理並執行 Steam 遊戲的應用程式
|
||||||
|
Comment[th]=โปรแกรมสำหรับจัดการและเล่นเกมบน Steam
|
||||||
|
Comment[tr]=Steam üzerinden oyun oynama ve düzenleme uygulaması
|
||||||
|
Comment[uk]=Програма для керування іграми та запуску ігор у Steam
|
||||||
|
Comment[vi]=Ứng dụng để quản lý và chơi trò chơi trên Steam
|
||||||
|
Exec=/usr/bin/steam-runtime %U
|
||||||
|
Icon=steam
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=Network;FileTransfer;Game;
|
||||||
|
MimeType=x-scheme-handler/steam;x-scheme-handler/steamlink;
|
||||||
|
Actions=Store;Community;Library;Servers;Screenshots;News;Settings;BigPicture;Friends;
|
||||||
|
PrefersNonDefaultGPU=true
|
||||||
|
X-KDE-RunOnDiscreteGpu=true
|
||||||
|
|
||||||
|
[Desktop Action Store]
|
||||||
|
Name=Store
|
||||||
|
Name[pt_BR]=Loja
|
||||||
|
Name[bg]=Магазин
|
||||||
|
Name[cs]=Obchod
|
||||||
|
Name[da]=Butik
|
||||||
|
Name[nl]=Winkel
|
||||||
|
Name[fi]=Kauppa
|
||||||
|
Name[fr]=Magasin
|
||||||
|
Name[de]=Shop
|
||||||
|
Name[el]=ΚΑΤΑΣΤΗΜΑ
|
||||||
|
Name[hu]=Áruház
|
||||||
|
Name[it]=Negozio
|
||||||
|
Name[ja]=ストア
|
||||||
|
Name[ko]=상점
|
||||||
|
Name[no]=Butikk
|
||||||
|
Name[pt_PT]=Loja
|
||||||
|
Name[pl]=Sklep
|
||||||
|
Name[ro]=Magazin
|
||||||
|
Name[ru]=Магазин
|
||||||
|
Name[es]=Tienda
|
||||||
|
Name[sv]=Butik
|
||||||
|
Name[zh_CN]=商店
|
||||||
|
Name[zh_TW]=商店
|
||||||
|
Name[th]=ร้านค้า
|
||||||
|
Name[tr]=Mağaza
|
||||||
|
Name[uk]=Крамниця
|
||||||
|
Name[vi]=Cửa hàng
|
||||||
|
Exec=steam steam://store
|
||||||
|
|
||||||
|
[Desktop Action Community]
|
||||||
|
Name=Community
|
||||||
|
Name[pt_BR]=Comunidade
|
||||||
|
Name[bg]=Общност
|
||||||
|
Name[cs]=Komunita
|
||||||
|
Name[da]=Fællesskab
|
||||||
|
Name[nl]=Community
|
||||||
|
Name[fi]=Yhteisö
|
||||||
|
Name[fr]=Communauté
|
||||||
|
Name[de]=Community
|
||||||
|
Name[el]=Κοινότητα
|
||||||
|
Name[hu]=Közösség
|
||||||
|
Name[it]=Comunità
|
||||||
|
Name[ja]=コミュニティ
|
||||||
|
Name[ko]=커뮤니티
|
||||||
|
Name[no]=Samfunn
|
||||||
|
Name[pt_PT]=Comunidade
|
||||||
|
Name[pl]=Społeczność
|
||||||
|
Name[ro]=Comunitate
|
||||||
|
Name[ru]=Сообщество
|
||||||
|
Name[es]=Comunidad
|
||||||
|
Name[sv]=Gemenskap
|
||||||
|
Name[zh_CN]=社区
|
||||||
|
Name[zh_TW]=社群
|
||||||
|
Name[th]=ชุมชน
|
||||||
|
Name[tr]=Topluluk
|
||||||
|
Name[uk]=Спільнота
|
||||||
|
Name[vi]=Cộng đồng
|
||||||
|
Exec=steam steam://url/SteamIDControlPage
|
||||||
|
|
||||||
|
[Desktop Action Library]
|
||||||
|
Name=Library
|
||||||
|
Name[pt_BR]=Biblioteca
|
||||||
|
Name[bg]=Библиотека
|
||||||
|
Name[cs]=Knihovna
|
||||||
|
Name[da]=Bibliotek
|
||||||
|
Name[nl]=Bibliotheek
|
||||||
|
Name[fi]=Kokoelma
|
||||||
|
Name[fr]=Bibliothèque
|
||||||
|
Name[de]=Bibliothek
|
||||||
|
Name[el]=Συλλογή
|
||||||
|
Name[hu]=Könyvtár
|
||||||
|
Name[it]=Libreria
|
||||||
|
Name[ja]=ライブラリ
|
||||||
|
Name[ko]=라이브러리
|
||||||
|
Name[no]=Bibliotek
|
||||||
|
Name[pt_PT]=Biblioteca
|
||||||
|
Name[pl]=Biblioteka
|
||||||
|
Name[ro]=Colecţie
|
||||||
|
Name[ru]=Библиотека
|
||||||
|
Name[es]=Biblioteca
|
||||||
|
Name[sv]=Bibliotek
|
||||||
|
Name[zh_CN]=库
|
||||||
|
Name[zh_TW]=收藏庫
|
||||||
|
Name[th]=คลัง
|
||||||
|
Name[tr]=Kütüphane
|
||||||
|
Name[uk]=Бібліотека
|
||||||
|
Name[vi]=Thư viện
|
||||||
|
Exec=steam steam://open/games
|
||||||
|
|
||||||
|
[Desktop Action Servers]
|
||||||
|
Name=Servers
|
||||||
|
Name[pt_BR]=Servidores
|
||||||
|
Name[bg]=Сървъри
|
||||||
|
Name[cs]=Servery
|
||||||
|
Name[da]=Servere
|
||||||
|
Name[nl]=Servers
|
||||||
|
Name[fi]=Palvelimet
|
||||||
|
Name[fr]=Serveurs
|
||||||
|
Name[de]=Server
|
||||||
|
Name[el]=Διακομιστές
|
||||||
|
Name[hu]=Szerverek
|
||||||
|
Name[it]=Server
|
||||||
|
Name[ja]=サーバー
|
||||||
|
Name[ko]=서버
|
||||||
|
Name[no]=Tjenere
|
||||||
|
Name[pt_PT]=Servidores
|
||||||
|
Name[pl]=Serwery
|
||||||
|
Name[ro]=Servere
|
||||||
|
Name[ru]=Серверы
|
||||||
|
Name[es]=Servidores
|
||||||
|
Name[sv]=Servrar
|
||||||
|
Name[zh_CN]=服务器
|
||||||
|
Name[zh_TW]=伺服器
|
||||||
|
Name[th]=เซิร์ฟเวอร์
|
||||||
|
Name[tr]=Sunucular
|
||||||
|
Name[uk]=Сервери
|
||||||
|
Name[vi]=Máy chủ
|
||||||
|
Exec=steam steam://open/servers
|
||||||
|
|
||||||
|
[Desktop Action Screenshots]
|
||||||
|
Name=Screenshots
|
||||||
|
Name[pt_BR]=Capturas de tela
|
||||||
|
Name[bg]=Снимки
|
||||||
|
Name[cs]=Snímky obrazovky
|
||||||
|
Name[da]=Skærmbilleder
|
||||||
|
Name[nl]=Screenshots
|
||||||
|
Name[fi]=Kuvankaappaukset
|
||||||
|
Name[fr]=Captures d'écran
|
||||||
|
Name[de]=Screenshots
|
||||||
|
Name[el]=Φωτογραφίες
|
||||||
|
Name[hu]=Képernyőmentések
|
||||||
|
Name[it]=Screenshot
|
||||||
|
Name[ja]=スクリーンショット
|
||||||
|
Name[ko]=스크린샷
|
||||||
|
Name[no]=Skjermbilder
|
||||||
|
Name[pt_PT]=Capturas de ecrã
|
||||||
|
Name[pl]=Zrzuty ekranu
|
||||||
|
Name[ro]=Capturi de ecran
|
||||||
|
Name[ru]=Скриншоты
|
||||||
|
Name[es]=Capturas
|
||||||
|
Name[sv]=Skärmdumpar
|
||||||
|
Name[zh_CN]=截图
|
||||||
|
Name[zh_TW]=螢幕擷圖
|
||||||
|
Name[th]=ภาพหน้าจอ
|
||||||
|
Name[tr]=Ekran Görüntüleri
|
||||||
|
Name[uk]=Скріншоти
|
||||||
|
Name[vi]=Ảnh chụp
|
||||||
|
Exec=steam steam://open/screenshots
|
||||||
|
|
||||||
|
[Desktop Action News]
|
||||||
|
Name=News
|
||||||
|
Name[pt_BR]=Notícias
|
||||||
|
Name[bg]=Новини
|
||||||
|
Name[cs]=Zprávy
|
||||||
|
Name[da]=Nyheder
|
||||||
|
Name[nl]=Nieuws
|
||||||
|
Name[fi]=Uutiset
|
||||||
|
Name[fr]=Actualités
|
||||||
|
Name[de]=Neuigkeiten
|
||||||
|
Name[el]=Νέα
|
||||||
|
Name[hu]=Hírek
|
||||||
|
Name[it]=Notizie
|
||||||
|
Name[ja]=ニュース
|
||||||
|
Name[ko]=뉴스
|
||||||
|
Name[no]=Nyheter
|
||||||
|
Name[pt_PT]=Novidades
|
||||||
|
Name[pl]=Aktualności
|
||||||
|
Name[ro]=Știri
|
||||||
|
Name[ru]=Новости
|
||||||
|
Name[es]=Noticias
|
||||||
|
Name[sv]=Nyheter
|
||||||
|
Name[zh_CN]=新闻
|
||||||
|
Name[zh_TW]=新聞
|
||||||
|
Name[th]=ข่าวสาร
|
||||||
|
Name[tr]=Haberler
|
||||||
|
Name[uk]=Новини
|
||||||
|
Name[vi]=Tin tức
|
||||||
|
Exec=steam steam://open/news
|
||||||
|
|
||||||
|
[Desktop Action Settings]
|
||||||
|
Name=Settings
|
||||||
|
Name[pt_BR]=Configurações
|
||||||
|
Name[bg]=Настройки
|
||||||
|
Name[cs]=Nastavení
|
||||||
|
Name[da]=Indstillinger
|
||||||
|
Name[nl]=Instellingen
|
||||||
|
Name[fi]=Asetukset
|
||||||
|
Name[fr]=Paramètres
|
||||||
|
Name[de]=Einstellungen
|
||||||
|
Name[el]=Ρυθμίσεις
|
||||||
|
Name[hu]=Beállítások
|
||||||
|
Name[it]=Impostazioni
|
||||||
|
Name[ja]=設定
|
||||||
|
Name[ko]=설정
|
||||||
|
Name[no]=Innstillinger
|
||||||
|
Name[pt_PT]=Definições
|
||||||
|
Name[pl]=Ustawienia
|
||||||
|
Name[ro]=Setări
|
||||||
|
Name[ru]=Настройки
|
||||||
|
Name[es]=Parámetros
|
||||||
|
Name[sv]=Inställningar
|
||||||
|
Name[zh_CN]=设置
|
||||||
|
Name[zh_TW]=設定
|
||||||
|
Name[th]=การตั้งค่า
|
||||||
|
Name[tr]=Ayarlar
|
||||||
|
Name[uk]=Налаштування
|
||||||
|
Name[vi]=Thiết lập
|
||||||
|
Exec=steam steam://open/settings
|
||||||
|
|
||||||
|
[Desktop Action BigPicture]
|
||||||
|
Name=Big Picture
|
||||||
|
Exec=steam steam://open/bigpicture
|
||||||
|
|
||||||
|
[Desktop Action Friends]
|
||||||
|
Name=Friends
|
||||||
|
Name[pt_BR]=Amigos
|
||||||
|
Name[bg]=Приятели
|
||||||
|
Name[cs]=Přátelé
|
||||||
|
Name[da]=Venner
|
||||||
|
Name[nl]=Vrienden
|
||||||
|
Name[fi]=Kaverit
|
||||||
|
Name[fr]=Amis
|
||||||
|
Name[de]=Freunde
|
||||||
|
Name[el]=Φίλοι
|
||||||
|
Name[hu]=Barátok
|
||||||
|
Name[it]=Amici
|
||||||
|
Name[ja]=フレンド
|
||||||
|
Name[ko]=친구
|
||||||
|
Name[no]=Venner
|
||||||
|
Name[pt_PT]=Amigos
|
||||||
|
Name[pl]=Znajomi
|
||||||
|
Name[ro]=Prieteni
|
||||||
|
Name[ru]=Друзья
|
||||||
|
Name[es]=Amigos
|
||||||
|
Name[sv]=Vänner
|
||||||
|
Name[zh_CN]=好友
|
||||||
|
Name[zh_TW]=好友
|
||||||
|
Name[th]=เพื่อน
|
||||||
|
Name[tr]=Arkadaşlar
|
||||||
|
Name[uk]=Друзі
|
||||||
|
Name[vi]=Bạn bè
|
||||||
|
Exec=steam steam://open/friends
|
|
@ -138,7 +138,64 @@ networkmanager
|
||||||
sddm
|
sddm
|
||||||
|
|
||||||
# Minnimal Plasma Desktop for start
|
# Minnimal Plasma Desktop for start
|
||||||
plasma
|
bluedevil
|
||||||
|
breeze
|
||||||
|
breeze-gtk
|
||||||
|
breeze-plymouth
|
||||||
|
drkonqi
|
||||||
|
flatpak-kcm
|
||||||
|
kactivitymanagerd
|
||||||
|
kde-cli-tools
|
||||||
|
kde-gtk-config
|
||||||
|
kdecoration
|
||||||
|
kdeplasma-addons
|
||||||
|
kgamma
|
||||||
|
kglobalacceld
|
||||||
|
kinfocenter
|
||||||
|
kmenuedit
|
||||||
|
kpipewire
|
||||||
|
krdp
|
||||||
|
kscreen
|
||||||
|
kscreenlocker
|
||||||
|
ksshaskpass
|
||||||
|
ksystemstats
|
||||||
|
kwallet-pam
|
||||||
|
kwayland
|
||||||
|
kwin
|
||||||
|
kwrited
|
||||||
|
layer-shell-qt
|
||||||
|
libkscreen
|
||||||
|
libksysguard
|
||||||
|
libplasma
|
||||||
|
milou
|
||||||
|
ocean-sound-theme
|
||||||
|
oxygen
|
||||||
|
oxygen-sounds
|
||||||
|
plasma-activities
|
||||||
|
plasma-activities-stats
|
||||||
|
plasma-browser-integration
|
||||||
|
plasma-desktop
|
||||||
|
plasma-disks
|
||||||
|
plasma-firewall
|
||||||
|
plasma-integration
|
||||||
|
plasma-nm
|
||||||
|
plasma-pa
|
||||||
|
plasma-sdk
|
||||||
|
plasma-systemmonitor
|
||||||
|
plasma-thunderbolt
|
||||||
|
plasma-vault
|
||||||
|
plasma-workspace
|
||||||
|
plasma-workspace-wallpapers
|
||||||
|
plasma5support
|
||||||
|
plymouth-kcm
|
||||||
|
polkit-kde-agent
|
||||||
|
powerdevil
|
||||||
|
print-manager
|
||||||
|
qqc2-breeze-style
|
||||||
|
sddm-kcm
|
||||||
|
systemsettings
|
||||||
|
wacomtablet
|
||||||
|
xdg-desktop-portal-kde
|
||||||
dolphin
|
dolphin
|
||||||
ark
|
ark
|
||||||
unzip
|
unzip
|
||||||
|
@ -166,10 +223,12 @@ wine
|
||||||
wine-gecko
|
wine-gecko
|
||||||
wine-mono
|
wine-mono
|
||||||
lutris
|
lutris
|
||||||
|
protonup-qt-bin
|
||||||
|
|
||||||
#ParchLinux Core Packages
|
#ParchLinux Core Packages
|
||||||
calamares
|
calamares
|
||||||
calamares-parch
|
calamares-parch
|
||||||
os-prober
|
os-prober
|
||||||
parch-base
|
parch-base
|
||||||
|
parch-nvidia-mkinitcpio
|
||||||
|
nvidia-pacman-hook
|
||||||
|
|
|
@ -138,7 +138,64 @@ networkmanager
|
||||||
sddm
|
sddm
|
||||||
|
|
||||||
# Minnimal Plasma Desktop for start
|
# Minnimal Plasma Desktop for start
|
||||||
plasma
|
bluedevil
|
||||||
|
breeze
|
||||||
|
breeze-gtk
|
||||||
|
breeze-plymouth
|
||||||
|
drkonqi
|
||||||
|
flatpak-kcm
|
||||||
|
kactivitymanagerd
|
||||||
|
kde-cli-tools
|
||||||
|
kde-gtk-config
|
||||||
|
kdecoration
|
||||||
|
kdeplasma-addons
|
||||||
|
kgamma
|
||||||
|
kglobalacceld
|
||||||
|
kinfocenter
|
||||||
|
kmenuedit
|
||||||
|
kpipewire
|
||||||
|
krdp
|
||||||
|
kscreen
|
||||||
|
kscreenlocker
|
||||||
|
ksshaskpass
|
||||||
|
ksystemstats
|
||||||
|
kwallet-pam
|
||||||
|
kwayland
|
||||||
|
kwin
|
||||||
|
kwrited
|
||||||
|
layer-shell-qt
|
||||||
|
libkscreen
|
||||||
|
libksysguard
|
||||||
|
libplasma
|
||||||
|
milou
|
||||||
|
ocean-sound-theme
|
||||||
|
oxygen
|
||||||
|
oxygen-sounds
|
||||||
|
plasma-activities
|
||||||
|
plasma-activities-stats
|
||||||
|
plasma-browser-integration
|
||||||
|
plasma-desktop
|
||||||
|
plasma-disks
|
||||||
|
plasma-firewall
|
||||||
|
plasma-integration
|
||||||
|
plasma-nm
|
||||||
|
plasma-pa
|
||||||
|
plasma-sdk
|
||||||
|
plasma-systemmonitor
|
||||||
|
plasma-thunderbolt
|
||||||
|
plasma-vault
|
||||||
|
plasma-workspace
|
||||||
|
plasma-workspace-wallpapers
|
||||||
|
plasma5support
|
||||||
|
plymouth-kcm
|
||||||
|
polkit-kde-agent
|
||||||
|
powerdevil
|
||||||
|
print-manager
|
||||||
|
qqc2-breeze-style
|
||||||
|
sddm-kcm
|
||||||
|
systemsettings
|
||||||
|
wacomtablet
|
||||||
|
xdg-desktop-portal-kde
|
||||||
dolphin
|
dolphin
|
||||||
ark
|
ark
|
||||||
unzip
|
unzip
|
||||||
|
@ -165,6 +222,7 @@ wine
|
||||||
wine-gecko
|
wine-gecko
|
||||||
wine-mono
|
wine-mono
|
||||||
lutris
|
lutris
|
||||||
|
protonup-qt-bin
|
||||||
|
|
||||||
#ParchLinux Core Packages
|
#ParchLinux Core Packages
|
||||||
calamares
|
calamares
|
||||||
|
|