Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0d46b77d56 | ||
|
41a7b5c938 | ||
|
30e1389566 | ||
|
5ac126110d | ||
|
749b242626 | ||
|
6423c44538 | ||
|
02f612c6f8 | ||
|
880854d41a | ||
|
a4bd3869bb | ||
|
dcdf7015cf | ||
|
1590cfa5a7 | ||
|
97ece2f6c2 |
1
.github/build-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/release-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2
|
1
.github/release-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
5
|
37
.github/workflows/build-canaryv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: PikaOS Package Build Only (Canary) (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-canary-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
37
.github/workflows/build-nestv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: PikaOS Package Build Only (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-nest-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
40
.github/workflows/release-canaryv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: PikaOS Package Build & Release (Canary) (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-canary-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
||||||
|
|
||||||
|
- name: Release Package
|
||||||
|
run: ./release.sh
|
40
.github/workflows/release-nestv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: PikaOS Package Build & Release (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-nest-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
||||||
|
|
||||||
|
- name: Release Package
|
||||||
|
run: ./release.sh
|
46
.github/workflows/release.yml
vendored
@ -1,46 +0,0 @@
|
|||||||
name: PikaOS Package Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: self-hosted
|
|
||||||
container:
|
|
||||||
image: ghcr.io/pikaos-linux/pika-package-container:latest
|
|
||||||
volumes:
|
|
||||||
- /proc:/proc
|
|
||||||
options: --privileged -it
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Import GPG key
|
|
||||||
id: import_gpg
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v5
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
|
||||||
|
|
||||||
- name: Install SSH key
|
|
||||||
uses: shimataro/ssh-key-action@v2
|
|
||||||
with:
|
|
||||||
key: ${{ secrets.SSH_KEY }}
|
|
||||||
name: id_rsa
|
|
||||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
|
||||||
if_key_exists: replace
|
|
||||||
|
|
||||||
- name: Build Package
|
|
||||||
run: ./main.sh
|
|
||||||
|
|
||||||
- name: Release Package
|
|
||||||
run: ./release.sh
|
|
||||||
|
|
||||||
- name: Purge cache
|
|
||||||
uses: strrife/cloudflare-chunked-purge-action@master
|
|
||||||
env:
|
|
||||||
# Zone is required by both authentication methods
|
|
||||||
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
|
|
||||||
|
|
||||||
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
|
|
||||||
PURGE_URLS: ${{ vars.PURGE_URLS }}
|
|
14
main.sh
@ -1,3 +1,13 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
VERSION="4.0.0"
|
||||||
|
|
||||||
|
source ./pika-build-config.sh
|
||||||
|
|
||||||
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||||
|
|
||||||
# Clone Upstream
|
# Clone Upstream
|
||||||
cd ./pika-kde-settings
|
cd ./pika-kde-settings
|
||||||
|
|
||||||
@ -5,8 +15,8 @@ cd ./pika-kde-settings
|
|||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
dh_make --createorig
|
LOGNAME=root dh_make --createorig -y -l -p pika-kde-settings_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
||||||
dpkg-buildpackage
|
dpkg-buildpackage --no-sign
|
||||||
|
|
||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
|
10
pika-build-config/amd64-v3.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
export PIKA_BUILD_ARCH="amd64-v3"
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||||
|
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||||
|
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
5
pika-build-config/i386.sh
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
export PIKA_BUILD_ARCH="i386"
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||||
|
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
@ -1,3 +1,21 @@
|
|||||||
|
pika-kde-settings (4.0.0-101pika4) pika; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.11-100pika1) pikauwu; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.9-100pika2) pikauwu; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
pika-kde-settings (3.8.8-99pika1.lunar) lunar; urgency=medium
|
pika-kde-settings (3.8.8-99pika1.lunar) lunar; urgency=medium
|
||||||
|
|
||||||
* Pika-theme
|
* Pika-theme
|
||||||
|
@ -9,8 +9,23 @@ Rules-Requires-Root: no
|
|||||||
Package: pika-kde-settings
|
Package: pika-kde-settings
|
||||||
Source: meta-kde
|
Source: meta-kde
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
Depends: breeze, pika-theme
|
Depends:
|
||||||
Conflicts: pika-settings
|
breeze,
|
||||||
|
breeze-icon-theme,
|
||||||
|
breeze-gtk-theme,
|
||||||
|
sddm-theme-breeze,
|
||||||
|
papirus-icon-theme,
|
||||||
|
papirus-colors,
|
||||||
|
sound-theme-freedesktop,
|
||||||
|
sound-theme-pika,
|
||||||
|
pika-wallpapers,
|
||||||
|
Conflicts:
|
||||||
|
pika-gnome-settings,
|
||||||
|
pika-hyprland-settings,
|
||||||
|
pika-settings,
|
||||||
|
pika-gnome-layouts
|
||||||
|
Provides:
|
||||||
|
pika-settings
|
||||||
Section: metapackages
|
Section: metapackages
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Homepage: https://www.kde.org
|
Homepage: https://www.kde.org
|
||||||
|
@ -1 +0,0 @@
|
|||||||
pika-kde-desktop_1.0.1_source.buildinfo metapackages optional
|
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cp -f /etc/skel/.config/examples/metadata.desktop /usr/share/plasma/desktoptheme/Orchis-dark/
|
#cp -f /etc/skel/.config/examples/metadata.desktop /usr/share/plasma/desktoptheme/Orchis-dark/
|
||||||
cp -f /etc/skel/.config/examples/.profile /etc/skel/
|
cp -f /etc/skel/.config/examples/.profile /etc/skel/
|
||||||
cp -f /usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png /usr/share/sddm/themes/Orchis/
|
#cp -f /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg /usr/share/sddm/themes/Orchis/
|
||||||
cp -f /etc/skel/.config/examples/theme.conf.user /usr/share/sddm/themes/Orchis/
|
#cp -f /etc/skel/.config/examples/theme.conf.user /usr/share/sddm/themes/Orchis/
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
override_dh_install:
|
override_dh_install:
|
||||||
dh_install
|
dh_install
|
||||||
mkdir -p debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/
|
mkdir -p debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/
|
||||||
ln -s /usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/7680x4320.png
|
ln -s /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/7680x4320.png
|
||||||
ln -s /usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/screenshot.png
|
ln -s /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/screenshot.png
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0 (native)
|
3.0 (quilt)
|
||||||
|
@ -4,8 +4,9 @@ Session=plasma
|
|||||||
User=
|
User=
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
HaltCommand=
|
HaltCommand=/usr/bin/systemctl poweroff
|
||||||
InputMethod=
|
Numlock=none
|
||||||
|
RebootCommand=/usr/bin/systemctl reboot
|
||||||
|
|
||||||
[Theme]
|
[Theme]
|
||||||
Current=Orchis
|
Current=breeze
|
||||||
|
17
pika-kde-settings/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, #aa9729, #000000, #e8cb2d, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #aa9729
|
||||||
|
Palette\disabled=#6e7173, #2f3338, #454c52, #393e44, #131517, #222629, #656768, #ffffff, #727679, #1a1d1f, #282c30, #0e0f11, #282c30, #6e7173, #5e5623, #443051, #212427, #000000, #31363b, #fcfcfc, #464b4f, #282c30
|
||||||
|
Palette\inactive=#fcfcfc, #31363b, #474d54, #3a4045, #141618, #24282b, #fcfcfc, #ffffff, #fcfcfc, #1b1e20, #2a2e32, #0f1012, #48421a, #fcfcfc, #e8cb2d, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #48421a
|
||||||
|
font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1"
|
@ -1,26 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Orchis-dark
|
|
||||||
X-KDE-PluginInfo-Author=Vinceliuice
|
|
||||||
X-KDE-PluginInfo-Email=vinceliuice@hotmail.com
|
|
||||||
X-KDE-PluginInfo-Name=Orchis-dark
|
|
||||||
X-KDE-PluginInfo-Version=
|
|
||||||
X-KDE-PluginInfo-Website=
|
|
||||||
X-KDE-PluginInfo-Category=
|
|
||||||
X-KDE-PluginInfo-Depends=
|
|
||||||
X-KDE-PluginInfo-License=LGPL
|
|
||||||
X-KDE-PluginInfo-EnabledByDefault=true
|
|
||||||
|
|
||||||
[ContrastEffect]
|
|
||||||
enabled=false
|
|
||||||
contrast=0.2
|
|
||||||
intensity=0.4
|
|
||||||
saturation=1.7
|
|
||||||
|
|
||||||
[Wallpaper]
|
|
||||||
defaultWallpaperTheme=Pika
|
|
||||||
defaultFileSuffix=.png
|
|
||||||
defaultWidth=7680
|
|
||||||
defaultHeight=4320
|
|
||||||
|
|
||||||
[AdaptiveTransparency]
|
|
||||||
enabled=true
|
|
@ -1,3 +1,3 @@
|
|||||||
[General]
|
[General]
|
||||||
background=Wallpaper_PikaOS_Parrot_8K.png
|
background=duck_village_by_neytirix_dekbu6y.jpg
|
||||||
type=image
|
type=image
|
||||||
|
@ -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.0 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="#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.0 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
pika-kde-settings/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 #e8cb2d;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #6c6534;
|
||||||
|
@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 #000000;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_selected_bg_color_breeze #aa9729;
|
||||||
|
@define-color theme_selected_fg_color_breeze #000000;
|
||||||
|
@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 #48421a;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #48421a;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #e8cb2d;
|
||||||
|
@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
pika-kde-settings/etc/skel/.config/gtk-3.0/gtk.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
@import 'colors.css';
|
16
pika-kde-settings/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=Papirus-Colors-Dark
|
||||||
|
gtk-menu-images=true
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=true
|
||||||
|
gtk-sound-theme-name=pika
|
||||||
|
gtk-theme-name=Breeze
|
||||||
|
gtk-toolbar-style=3
|
||||||
|
gtk-xft-dpi=98304
|
@ -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
pika-kde-settings/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 #e8cb2d;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_focus_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_focus_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #6c6534;
|
||||||
|
@define-color theme_button_decoration_hover_breeze #e8cb2d;
|
||||||
|
@define-color theme_button_decoration_hover_insensitive_breeze #6c6534;
|
||||||
|
@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 #000000;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_selected_bg_color_breeze #aa9729;
|
||||||
|
@define-color theme_selected_fg_color_breeze #000000;
|
||||||
|
@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 #48421a;
|
||||||
|
@define-color theme_unfocused_selected_bg_color_breeze #48421a;
|
||||||
|
@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 #e8cb2d;
|
||||||
|
@define-color theme_view_hover_decoration_color_breeze #e8cb2d;
|
||||||
|
@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
pika-kde-settings/etc/skel/.config/gtk-4.0/gtk.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
@import 'colors.css';
|
12
pika-kde-settings/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=Papirus-Colors-Dark
|
||||||
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
|
gtk-primary-button-warps-slider=true
|
||||||
|
gtk-sound-theme-name=pika
|
||||||
|
gtk-xft-dpi=98304
|
@ -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
pika-kde-settings/etc/skel/.config/gtkrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# created by KDE Plasma, Thu Aug 29 18:23:52 2024
|
||||||
|
#
|
||||||
|
include "/usr/share/themes/Breeze/gtk-2.0/gtkrc"
|
||||||
|
|
||||||
|
gtk-theme-name="Breeze"
|
||||||
|
|
5
pika-kde-settings/etc/skel/.config/gtkrc-2.0
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# created by KDE Plasma, Thu Aug 29 18:23:52 2024
|
||||||
|
#
|
||||||
|
|
||||||
|
gtk-alternative-button-order = 1
|
||||||
|
|
5
pika-kde-settings/etc/skel/.config/kactivitymanagerdrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[activities]
|
||||||
|
4cf04912-f81f-4fe1-9822-384bad8df861=Default
|
||||||
|
|
||||||
|
[main]
|
||||||
|
currentActivity=4cf04912-f81f-4fe1-9822-384bad8df861
|
33
pika-kde-settings/etc/skel/.config/kconf_updaterc
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
updateInfoAdded=true
|
||||||
|
|
||||||
|
[gtkconfig.upd]
|
||||||
|
done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
|
||||||
|
mtime=1721128089
|
||||||
|
|
||||||
|
[kcalcrc.upd]
|
||||||
|
done=remove_deprecated_gtk4_option
|
||||||
|
mtime=1719803444
|
||||||
|
|
||||||
|
[kwin.upd]
|
||||||
|
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=1721128119
|
||||||
|
|
||||||
|
[migrate-calendar-to-plugin-id.upd]
|
||||||
|
done=kwin-6.1-remove-gridview-expose-shortcuts,migrate-calendar-plugins
|
||||||
|
mtime=1721128197
|
||||||
|
|
||||||
|
[plasma6.0-remove-dpi-settings.upd]
|
||||||
|
done=migrate-calendar-plugins,plasma6.0-remove-dpi-settings
|
||||||
|
mtime=1721128197
|
||||||
|
|
||||||
|
[plasma6.0-remove-old-shortcuts.upd]
|
||||||
|
done=plasma6.0-remove-dpi-settings,plasma6.0-remove-old-shortcuts
|
||||||
|
mtime=1721128198
|
||||||
|
|
||||||
|
[plasmashell-6.0-keep-custom-position-of-panels.upd]
|
||||||
|
done=plasma6.0-remove-old-shortcuts,plasmashell-6.0-keep-custom-position-of-panels
|
||||||
|
mtime=1721128198
|
||||||
|
|
||||||
|
[plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd]
|
||||||
|
done=plasmashell-6.0-keep-custom-position-of-panels,plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels
|
||||||
|
mtime=1721128198
|
2
pika-kde-settings/etc/skel/.config/kded5rc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[Module-device_automounter]
|
||||||
|
autoload=false
|
162
pika-kde-settings/etc/skel/.config/kdeglobals
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
[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=177,158,49
|
||||||
|
BackgroundNormal=49,54,59
|
||||||
|
DecorationFocus=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
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=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
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=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
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=170,151,41
|
||||||
|
BackgroundNormal=170,151,41
|
||||||
|
DecorationFocus=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=0,0,0
|
||||||
|
ForegroundLink=254,231,139
|
||||||
|
ForegroundNegative=176,55,69
|
||||||
|
ForegroundNeutral=198,92,0
|
||||||
|
ForegroundNormal=0,0,0
|
||||||
|
ForegroundPositive=23,104,57
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[Colors:Tooltip]
|
||||||
|
BackgroundAlternate=42,46,50
|
||||||
|
BackgroundNormal=49,54,59
|
||||||
|
DecorationFocus=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
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=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
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=232,203,45
|
||||||
|
DecorationHover=232,203,45
|
||||||
|
ForegroundActive=232,203,45
|
||||||
|
ForegroundInactive=161,169,177
|
||||||
|
ForegroundLink=232,203,45
|
||||||
|
ForegroundNegative=218,68,83
|
||||||
|
ForegroundNeutral=246,116,0
|
||||||
|
ForegroundNormal=252,252,252
|
||||||
|
ForegroundPositive=39,174,96
|
||||||
|
ForegroundVisited=155,89,182
|
||||||
|
|
||||||
|
[General]
|
||||||
|
AccentColor=232,203,45
|
||||||
|
BrowserApplication[$e]=firefox.desktop
|
||||||
|
ColorSchemeHash=4a48bd34ba53d580d8594cb0216221e77518509f
|
||||||
|
LastUsedCustomAccentColor=232,203,45
|
||||||
|
XftHintStyle=hintslight
|
||||||
|
XftSubPixel=none
|
||||||
|
widgetStyle=breeze
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Theme=Papirus-Colors-Dark
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
LookAndFeelPackage=org.pikaos.breeze-theme
|
||||||
|
ShowDeleteCommand=true
|
||||||
|
SingleClick=false
|
||||||
|
|
||||||
|
[Paths]
|
||||||
|
Desktop[$e]=$(xdg-user-dir DESKTOP)
|
||||||
|
Documents[$e]=$(xdg-user-dir DOCUMENTS)
|
||||||
|
|
||||||
|
[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
|
10
pika-kde-settings/etc/skel/.config/kwinrc
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Desktops]
|
||||||
|
Id_1=00ce176b-05f8-4f99-80ce-4732c5ea12dd
|
||||||
|
Number=1
|
||||||
|
Rows=1
|
||||||
|
|
||||||
|
[Tiling]
|
||||||
|
padding=4
|
||||||
|
|
||||||
|
[Tiling][a4370a40-3613-5789-9d9c-216b0828af3d]
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
2
pika-kde-settings/etc/skel/.config/plasma-localerc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[Formats]
|
||||||
|
LANG=en_US.UTF-8
|
@ -6,28 +6,6 @@ wheel:Vertical;NoModifier=org.kde.switchdesktop
|
|||||||
[ActionPlugins][1]
|
[ActionPlugins][1]
|
||||||
RightButton;NoModifier=org.kde.contextmenu
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
[Containments][64]
|
|
||||||
ItemGeometries-1920x1080=
|
|
||||||
ItemGeometriesHorizontal=
|
|
||||||
activityId=782a5605-8137-46a9-8dcb-a9ef79641448
|
|
||||||
formfactor=0
|
|
||||||
immutability=1
|
|
||||||
lastScreen=0
|
|
||||||
location=0
|
|
||||||
plugin=org.kde.plasma.folder
|
|
||||||
wallpaperplugin=org.kde.image
|
|
||||||
|
|
||||||
[Containments][64][ConfigDialog]
|
|
||||||
DialogHeight=510
|
|
||||||
DialogWidth=680
|
|
||||||
|
|
||||||
[Containments][64][General]
|
|
||||||
filterMimeTypes=\\0
|
|
||||||
|
|
||||||
[Containments][64][Wallpaper][org.kde.image][General]
|
|
||||||
Image=/usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png
|
|
||||||
SlidePaths=/usr/share/plasma/wallpapers/,/usr/share/wallpapers/
|
|
||||||
|
|
||||||
[Containments][65]
|
[Containments][65]
|
||||||
activityId=
|
activityId=
|
||||||
formfactor=2
|
formfactor=2
|
||||||
@ -37,24 +15,6 @@ location=4
|
|||||||
plugin=org.kde.panel
|
plugin=org.kde.panel
|
||||||
wallpaperplugin=org.kde.image
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
[Containments][65][Applets][66]
|
|
||||||
immutability=1
|
|
||||||
plugin=org.kde.plasma.kickoff
|
|
||||||
|
|
||||||
[Containments][65][Applets][66][Configuration]
|
|
||||||
PreloadWeight=100
|
|
||||||
popupHeight=510
|
|
||||||
popupWidth=687
|
|
||||||
|
|
||||||
[Containments][65][Applets][66][Configuration][General]
|
|
||||||
favoritesPortedToKAstats=true
|
|
||||||
|
|
||||||
[Containments][65][Applets][66][Configuration][Shortcuts]
|
|
||||||
global=Alt+F1
|
|
||||||
|
|
||||||
[Containments][65][Applets][66][Shortcuts]
|
|
||||||
global=Alt+F1
|
|
||||||
|
|
||||||
[Containments][65][Applets][67]
|
[Containments][65][Applets][67]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.pager
|
plugin=org.kde.plasma.pager
|
||||||
@ -64,7 +24,7 @@ immutability=1
|
|||||||
plugin=org.kde.plasma.icontasks
|
plugin=org.kde.plasma.icontasks
|
||||||
|
|
||||||
[Containments][65][Applets][68][Configuration][General]
|
[Containments][65][Applets][68][Configuration][General]
|
||||||
launchers=applications:pika-welcome-welcome.desktop,applications:systemsettings.desktop,preferred://filemanager,preferred://browser,applications:org.kde.konsole.desktop,applications:org.kde.kate.desktop,applications:update-manager.desktop,applications:mintinstall.desktop
|
launchers=applications:com.github.pikaos-linux.pikawelcome.desktop,applications:org.kde.discover.desktop,applications:systemsettings.desktop,preferred://filemanager,preferred://browser,applications:org.kde.konsole.desktop,applications:org.kde.kate.desktop
|
||||||
|
|
||||||
[Containments][65][Applets][69]
|
[Containments][65][Applets][69]
|
||||||
immutability=1
|
immutability=1
|
||||||
@ -87,16 +47,34 @@ PreloadWeight=55
|
|||||||
popupHeight=450
|
popupHeight=450
|
||||||
popupWidth=396
|
popupWidth=396
|
||||||
|
|
||||||
|
[Containments][65][Applets][81][Configuration][Appearance]
|
||||||
|
fontWeight=400
|
||||||
|
|
||||||
[Containments][65][Applets][82]
|
[Containments][65][Applets][82]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.showdesktop
|
plugin=org.kde.plasma.showdesktop
|
||||||
|
|
||||||
|
[Containments][65][Applets][89]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.kickerdash
|
||||||
|
|
||||||
|
[Containments][65][Applets][89][Configuration]
|
||||||
|
PreloadWeight=100
|
||||||
|
popupHeight=510
|
||||||
|
popupWidth=687
|
||||||
|
|
||||||
|
[Containments][65][Applets][89][Configuration][General]
|
||||||
|
favoritesPortedToKAstats=true
|
||||||
|
|
||||||
|
[Containments][65][Applets][89][Configuration][Shortcuts]
|
||||||
|
global=Alt+F1
|
||||||
|
|
||||||
[Containments][65][ConfigDialog]
|
[Containments][65][ConfigDialog]
|
||||||
DialogHeight=74
|
DialogHeight=74
|
||||||
DialogWidth=1920
|
DialogWidth=1920
|
||||||
|
|
||||||
[Containments][65][General]
|
[Containments][65][General]
|
||||||
AppletOrder=66;67;68;69;70;81;82
|
AppletOrder=89;67;68;69;70;81;82
|
||||||
|
|
||||||
[Containments][71]
|
[Containments][71]
|
||||||
activityId=
|
activityId=
|
||||||
@ -143,17 +121,56 @@ plugin=org.kde.plasma.vault
|
|||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.volume
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
|
[Containments][71][Applets][80][Configuration][General]
|
||||||
|
migrated=true
|
||||||
|
|
||||||
[Containments][71][Applets][83]
|
[Containments][71][Applets][83]
|
||||||
immutability=1
|
immutability=1
|
||||||
|
plugin=org.kde.kscreen
|
||||||
|
|
||||||
|
[Containments][71][Applets][84]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.cameraindicator
|
||||||
|
|
||||||
|
[Containments][71][Applets][85]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][71][Applets][87]
|
||||||
|
immutability=1
|
||||||
|
plugin=dev.jhyub.supergfxctl
|
||||||
|
|
||||||
|
[Containments][71][Applets][88]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.brightness
|
||||||
|
|
||||||
|
[Containments][71][Applets][90]
|
||||||
|
immutability=1
|
||||||
plugin=org.kde.plasma.battery
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
[Containments][71][Applets][84]
|
[Containments][71][Applets][91]
|
||||||
immutability=1
|
immutability=1
|
||||||
plugin=org.kde.plasma.networkmanagement
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
[Containments][71][General]
|
[Containments][71][General]
|
||||||
extraItems=org.kde.kdeconnect,org.kde.kupapplet,org.kde.plasma.battery,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.networkmanagement,org.kde.plasma.notifications,org.kde.plasma.printmanager,org.kde.plasma.vault,org.kde.plasma.volume
|
extraItems=org.kde.plasma.battery,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.networkmanagement,org.kde.plasma.notifications,org.kde.plasma.printmanager,org.kde.plasma.vault,org.kde.plasma.volume,dev.jhyub.supergfxctl,org.kde.kscreen,org.kde.plasma.brightness,org.kde.plasma.cameraindicator,org.kde.plasma.keyboardindicator
|
||||||
knownItems=org.kde.kdeconnect,org.kde.kupapplet,org.kde.plasma.battery,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.networkmanagement,org.kde.plasma.notifications,org.kde.plasma.printmanager,org.kde.plasma.vault,org.kde.plasma.volume
|
knownItems=org.kde.plasma.battery,org.kde.plasma.bluetooth,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.keyboardlayout,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.networkmanagement,org.kde.plasma.notifications,org.kde.plasma.printmanager,org.kde.plasma.vault,org.kde.plasma.volume,dev.jhyub.supergfxctl,org.kde.kscreen,org.kde.plasma.brightness,org.kde.plasma.cameraindicator,org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][86]
|
||||||
|
ItemGeometries-1920x1080=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=4cf04912-f81f-4fe1-9822-384bad8df861
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.folder
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][86][Wallpaper][org.kde.image][General]
|
||||||
|
Image=/usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg
|
||||||
|
SlidePaths=/usr/share/wallpapers/
|
||||||
|
|
||||||
[ScreenMapping]
|
[ScreenMapping]
|
||||||
itemsOnDisabledScreens=
|
itemsOnDisabledScreens=
|
||||||
|
screenMapping=
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Wallpapers]
|
[Wallpapers]
|
||||||
usersWallpapers=/usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png
|
usersWallpapers=/usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg
|
||||||
|
@ -8,4 +8,4 @@ thickness=44
|
|||||||
thickness=44
|
thickness=44
|
||||||
|
|
||||||
[Updates]
|
[Updates]
|
||||||
performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/desktop-base.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js
|
performed=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/desktop-base.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/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/mediaframe_migrate_useBackground_setting.js,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/migrate_font_weights.js
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
cursorTheme=Breeze_Snow
|
cursorTheme=Breeze_Snow
|
||||||
|
|
||||||
[kdeglobals][General]
|
[kdeglobals][General]
|
||||||
ColorScheme=OrchisDark
|
ColorScheme=BreezeDark
|
||||||
|
|
||||||
[kdeglobals][Icons]
|
[kdeglobals][Icons]
|
||||||
Theme=Papirus-Dark
|
Theme=Papirus-Colors-Dark
|
||||||
|
|
||||||
[kdeglobals][KDE]
|
[kdeglobals][KDE]
|
||||||
widgetStyle=kvantum-dark
|
widgetStyle=Breeze
|
||||||
|
|
||||||
[kwinrc][DesktopSwitcher]
|
[kwinrc][DesktopSwitcher]
|
||||||
LayoutName=org.kde.breeze.desktop
|
LayoutName=org.kde.breeze.desktop
|
||||||
@ -16,9 +16,5 @@ LayoutName=org.kde.breeze.desktop
|
|||||||
[kwinrc][WindowSwitcher]
|
[kwinrc][WindowSwitcher]
|
||||||
LayoutName=org.kde.breeze.desktop
|
LayoutName=org.kde.breeze.desktop
|
||||||
|
|
||||||
[kwinrc][org.kde.kdecoration2]
|
|
||||||
library=org.kde.kwin.aurorae
|
|
||||||
theme=__aurorae__svg__Orchis-dark_Nvidia
|
|
||||||
|
|
||||||
[plasmarc][Theme]
|
[plasmarc][Theme]
|
||||||
name=Orchis-dark
|
name=Breeze
|
@ -19,7 +19,7 @@ var layout = {
|
|||||||
"DialogWidth": "680"
|
"DialogWidth": "680"
|
||||||
},
|
},
|
||||||
"/Wallpaper/org.kde.image/General": {
|
"/Wallpaper/org.kde.image/General": {
|
||||||
"Image": "/usr/share/backgrounds/pika/Wallpaper_PikaOS_Parrot_8K.png",
|
"Image": "/usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg",
|
||||||
"PreviewImage": "",
|
"PreviewImage": "",
|
||||||
"SlidePaths": "/usr/share/wallpapers/,/usr/share/backgrounds/"
|
"SlidePaths": "/usr/share/wallpapers/,/usr/share/backgrounds/"
|
||||||
}
|
}
|
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 179 KiB |
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 133 KiB |
@ -1,12 +1,12 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Comment=PikaOS Dark Theme (Based on Orchis)
|
Comment=PikaOS Breeze
|
||||||
Name=PikaOS Orchis Dark
|
Name=PikaOS Breeze
|
||||||
X-KDE-PluginInfo-Author=Cosmo
|
X-KDE-PluginInfo-Author=Cosmo
|
||||||
X-KDE-PluginInfo-Category=Plasma Look And Feel
|
X-KDE-PluginInfo-Category=Plasma Look And Feel
|
||||||
X-KDE-PluginInfo-Email=hotrod.master@hotmail.com
|
X-KDE-PluginInfo-Email=hotrod.master@hotmail.com
|
||||||
X-KDE-PluginInfo-EnabledByDefault=true
|
X-KDE-PluginInfo-EnabledByDefault=true
|
||||||
X-KDE-PluginInfo-License=LGPL 2.1+
|
X-KDE-PluginInfo-License=LGPL 2.1+
|
||||||
X-KDE-PluginInfo-Name=org.pikaos.kde-theme
|
X-KDE-PluginInfo-Name=org.pikaos.breeze-theme
|
||||||
X-KDE-PluginInfo-Version=0.1
|
X-KDE-PluginInfo-Version=0.1
|
||||||
X-KDE-PluginInfo-Website=https://www.pika-os.com
|
X-KDE-PluginInfo-Website=https://www.pika-os.com
|
||||||
X-KDE-ServiceTypes=Plasma/LookAndFeel
|
X-KDE-ServiceTypes=Plasma/LookAndFeel
|
@ -1,8 +1,2 @@
|
|||||||
# send debs to server
|
# send debs to server
|
||||||
rsync -azP --include './' --include '*.deb' --exclude '*' ./output/ ferreo@direct.pika-os.com:/srv/www/incoming/
|
rsync -azP --include './' --include '*.deb' --exclude '*' ./output/ ferreo@direct.pika-os.com:/srv/www/cockatiel-incoming/
|
||||||
|
|
||||||
# add debs to repo
|
|
||||||
ssh ferreo@direct.pika-os.com 'aptly repo add -force-replace -remove-files pika-main /srv/www/incoming/'
|
|
||||||
|
|
||||||
# publish the repo
|
|
||||||
ssh ferreo@direct.pika-os.com 'aptly publish update -batch -skip-contents -force-overwrite lunar filesystem:pikarepo:'
|
|