├── sddm ├── WhiteSur-6.0 │ ├── theme.conf.user │ ├── assets │ │ ├── login.svgz │ │ ├── logout_primary.svgz │ │ ├── switch_primary.svgz │ │ ├── restart_primary.svgz │ │ ├── shutdown_primary.svgz │ │ └── suspend_primary.svgz │ ├── theme.conf │ ├── Input.qml │ ├── metadata.desktop │ ├── faces │ │ └── .face.icon │ ├── Background.qml │ ├── SessionButton.qml │ └── KeyboardButton.qml ├── WhiteSur-6.2 │ ├── theme.conf.user │ ├── assets │ │ ├── login.svgz │ │ ├── logout_primary.svgz │ │ ├── switch_primary.svgz │ │ ├── restart_primary.svgz │ │ ├── shutdown_primary.svgz │ │ └── suspend_primary.svgz │ ├── theme.conf │ ├── Input.qml │ ├── metadata.desktop │ ├── faces │ │ └── .face.icon │ ├── Background.qml │ ├── SessionButton.qml │ └── KeyboardButton.qml ├── WhiteSur-5.0 │ ├── theme.conf.user │ ├── assets │ │ ├── login.svgz │ │ ├── logout_primary.svgz │ │ ├── switch_primary.svgz │ │ ├── restart_primary.svgz │ │ ├── shutdown_primary.svgz │ │ └── suspend_primary.svgz │ ├── theme.conf │ ├── metadata.desktop │ ├── faces │ │ └── .face.icon │ ├── components │ │ ├── VirtualKeyboard_wayland.qml │ │ ├── animation │ │ │ ├── RejectPasswordAnimation.qml │ │ │ └── RejectPasswordPathAnimation.qml │ │ ├── Clock.qml │ │ └── Battery.qml │ ├── Background.qml │ ├── SessionButton.qml │ └── KeyboardButton.qml ├── images │ ├── preview-dark.jpeg │ ├── preview-light.jpeg │ ├── background-dark.jpeg │ └── background-light.jpeg └── README.md ├── preview.png ├── preview-dark.png ├── plasma ├── desktoptheme │ ├── icons │ │ ├── go.svgz │ │ ├── kup.svgz │ │ ├── osd.svgz │ │ ├── slc.svgz │ │ ├── kget.svgz │ │ ├── kgpg.svgz │ │ ├── kmail.svgz │ │ ├── list.svgz │ │ ├── lock.svgz │ │ ├── mail.svgz │ │ ├── media.svgz │ │ ├── pamac.svgz │ │ ├── user.svgz │ │ ├── zoom.svgz │ │ ├── akonadi.svgz │ │ ├── amarok.svgz │ │ ├── document.svgz │ │ ├── kalarm.svgz │ │ ├── kopete.svgz │ │ ├── kruler.svgz │ │ ├── kteatime.svgz │ │ ├── ktorrent.svgz │ │ ├── mobile.svgz │ │ ├── quassel.svgz │ │ ├── redshift.svgz │ │ ├── software.svgz │ │ ├── update.svgz │ │ ├── wallet.svgz │ │ ├── window.svgz │ │ ├── yakuake.svgz │ │ ├── akregator.svgz │ │ ├── distribute.svgz │ │ ├── kleopatra.svgz │ │ ├── video-card.svgz │ │ ├── konv_message.svgz │ │ ├── konversation.svgz │ │ ├── kpackagekit.svgz │ │ ├── korgac.svg │ │ ├── vlc.svg │ │ └── bookmarks.svg │ ├── icons-old │ │ ├── pamac.svgz │ │ ├── korgac.svg │ │ ├── yakuake.svg │ │ ├── vlc.svg │ │ ├── manjaro.svg │ │ ├── mobile.svg │ │ ├── bookmarks.svg │ │ ├── konversation.svg │ │ ├── kmail.svg │ │ ├── notifications.svg │ │ ├── akregator.svg │ │ ├── edit.svg │ │ └── apport.svg │ ├── weather │ │ └── wind-arrows.svgz │ ├── WhiteSur │ │ ├── widgets │ │ │ ├── line.svgz │ │ │ ├── arrows.svgz │ │ │ ├── button.svgz │ │ │ ├── switch.svgz │ │ │ ├── tabbar.svgz │ │ │ ├── tasks.svgz │ │ │ ├── tooltip.svgz │ │ │ ├── scrollbar.svgz │ │ │ ├── background.svgz │ │ │ ├── checkmarks.svgz │ │ │ ├── menubaritem.svgz │ │ │ ├── radiobutton.svgz │ │ │ ├── scrollwidget.svgz │ │ │ ├── panel-background.svgz │ │ │ ├── plasmoidheading.svgz │ │ │ ├── plot-background.svg │ │ │ └── calendar.svg │ │ ├── dialogs │ │ │ └── background.svgz │ │ ├── solid │ │ │ ├── widgets │ │ │ │ ├── tooltip.svgz │ │ │ │ └── panel-background.svgz │ │ │ └── dialogs │ │ │ │ └── background.svgz │ │ ├── plasmarc │ │ ├── metadata.json │ │ └── metadata.desktop │ ├── WhiteSur-alt │ │ ├── widgets │ │ │ ├── clock.svgz │ │ │ ├── frame.svgz │ │ │ ├── line.svgz │ │ │ ├── notes.svgz │ │ │ ├── pager.svgz │ │ │ ├── tasks.svgz │ │ │ ├── button.svgz │ │ │ ├── calendar.svgz │ │ │ ├── dragger.svgz │ │ │ ├── glowbar.svgz │ │ │ ├── lineedit.svgz │ │ │ ├── listitem.svgz │ │ │ ├── slider.svgz │ │ │ ├── switch.svgz │ │ │ ├── tabbar.svgz │ │ │ ├── toolbar.svgz │ │ │ ├── tooltip.svgz │ │ │ ├── viewitem.svgz │ │ │ ├── background.svgz │ │ │ ├── busywidget.svgz │ │ │ ├── checkmarks.svgz │ │ │ ├── scrollbar.svgz │ │ │ ├── actionbutton.svgz │ │ │ ├── menubaritem.svgz │ │ │ ├── radiobutton.svgz │ │ │ ├── scrollwidget.svgz │ │ │ ├── action-overlays.svgz │ │ │ ├── media-delegate.svgz │ │ │ ├── plasmoidheading.svgz │ │ │ ├── bar_meter_vertical.svgz │ │ │ ├── margins-highlight.svgz │ │ │ ├── panel-background.svgz │ │ │ ├── bar_meter_horizontal.svgz │ │ │ ├── configuration-icons.svgz │ │ │ └── translucentbackground.svgz │ │ ├── dialogs │ │ │ └── background.svgz │ │ ├── solid │ │ │ ├── widgets │ │ │ │ ├── tooltip.svgz │ │ │ │ └── panel-background.svgz │ │ │ └── dialogs │ │ │ │ └── background.svgz │ │ ├── plasmarc │ │ ├── metadata.json │ │ └── metadata.desktop │ └── WhiteSur-dark │ │ ├── widgets │ │ ├── line.svgz │ │ ├── arrows.svgz │ │ ├── button.svgz │ │ ├── clock.svgz │ │ ├── switch.svgz │ │ ├── tabbar.svgz │ │ ├── tasks.svgz │ │ ├── tooltip.svgz │ │ ├── scrollbar.svgz │ │ ├── background.svgz │ │ ├── menubaritem.svgz │ │ ├── radiobutton.svgz │ │ ├── scrollwidget.svgz │ │ ├── panel-background.svgz │ │ ├── plasmoidheading.svgz │ │ ├── plot-background.svg │ │ └── calendar.svg │ │ ├── dialogs │ │ └── background.svgz │ │ ├── solid │ │ ├── widgets │ │ │ ├── tooltip.svgz │ │ │ └── panel-background.svgz │ │ └── dialogs │ │ │ └── background.svgz │ │ ├── plasmarc │ │ ├── metadata.json │ │ └── metadata.desktop ├── look-and-feel │ ├── com.github.vinceliuice.WhiteSur │ │ ├── contents │ │ │ ├── previews │ │ │ │ ├── splash.png │ │ │ │ ├── preview.png │ │ │ │ └── fullscreenpreview.jpg │ │ │ ├── splash │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── loading-00.svg │ │ │ │ │ ├── loading-12.svg │ │ │ │ │ ├── loading-01.svg │ │ │ │ │ ├── loading-02.svg │ │ │ │ │ ├── loading-03.svg │ │ │ │ │ ├── loading-04.svg │ │ │ │ │ ├── loading-05.svg │ │ │ │ │ ├── loading-06.svg │ │ │ │ │ ├── loading-07.svg │ │ │ │ │ ├── loading-08.svg │ │ │ │ │ ├── loading-09.svg │ │ │ │ │ ├── loading-10.svg │ │ │ │ │ └── loading-11.svg │ │ │ │ └── Splash.qml │ │ │ ├── defaults │ │ │ ├── logout │ │ │ │ ├── timer.js │ │ │ │ └── LogoutButton.qml │ │ │ └── layouts │ │ │ │ └── org.kde.plasma.desktop-layout.js │ │ ├── metadata.desktop │ │ └── metadata.json │ ├── com.github.vinceliuice.WhiteSur-alt │ │ ├── contents │ │ │ ├── previews │ │ │ │ ├── preview.png │ │ │ │ ├── splash.png │ │ │ │ └── fullscreenpreview.jpg │ │ │ ├── splash │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── loading-00.svg │ │ │ │ │ ├── loading-01.svg │ │ │ │ │ ├── loading-02.svg │ │ │ │ │ ├── loading-03.svg │ │ │ │ │ ├── loading-04.svg │ │ │ │ │ ├── loading-05.svg │ │ │ │ │ ├── loading-06.svg │ │ │ │ │ ├── loading-07.svg │ │ │ │ │ ├── loading-08.svg │ │ │ │ │ ├── loading-09.svg │ │ │ │ │ ├── loading-10.svg │ │ │ │ │ └── loading-11.svg │ │ │ │ └── Splash.qml │ │ │ ├── defaults │ │ │ ├── logout │ │ │ │ ├── timer.js │ │ │ │ └── LogoutButton.qml │ │ │ └── layouts │ │ │ │ └── org.kde.plasma.desktop-layout.js │ │ ├── metadata.desktop │ │ └── metadata.json │ └── com.github.vinceliuice.WhiteSur-dark │ │ ├── contents │ │ ├── previews │ │ │ ├── splash.png │ │ │ ├── preview.png │ │ │ └── fullscreenpreview.jpg │ │ ├── splash │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── loading-00.svg │ │ │ │ ├── loading-01.svg │ │ │ │ └── loading-02.svg │ │ │ └── Splash.qml │ │ ├── defaults │ │ ├── logout │ │ │ ├── timer.js │ │ │ └── LogoutButton.qml │ │ └── layouts │ │ │ └── org.kde.plasma.desktop-layout.js │ │ ├── metadata.desktop │ │ └── metadata.json ├── layout-templates │ └── org.github.desktop.WhiteSurPanel │ │ └── metadata.desktop └── plasmoids │ └── org.kde.plasma.splitdigitalclock │ ├── metadata.desktop │ ├── contents │ └── ui │ │ └── MonthMenu.qml │ └── metadata.json ├── wallpaper ├── WhiteSur │ ├── contents │ │ ├── images │ │ │ └── 3840x2160.jpg │ │ └── images_dark │ │ │ └── 3840x2160.jpg │ ├── metadata.json │ └── metadata.desktop ├── WhiteSur-dark │ ├── contents │ │ └── images │ │ │ └── 3840x2160.jpg │ ├── metadata.desktop │ └── metadata.json └── WhiteSur-light │ ├── contents │ └── images │ │ └── 3840x2160.jpg │ ├── metadata.desktop │ └── metadata.json ├── configs └── Xresources ├── AUTHORS ├── aurorae ├── metadata.desktop ├── metadata.json ├── main-sharp │ ├── WhiteSur-sharprc │ └── WhiteSur-dark-sharprc ├── main-opaque │ ├── WhiteSur-opaquerc │ └── WhiteSur-dark-opaquerc └── main │ ├── WhiteSurrc │ └── WhiteSur-darkrc ├── uninstall.sh └── README.md /sddm/WhiteSur-6.0/theme.conf.user: -------------------------------------------------------------------------------- 1 | [General] 2 | type=image 3 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/theme.conf.user: -------------------------------------------------------------------------------- 1 | [General] 2 | type=image 3 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/preview.png -------------------------------------------------------------------------------- /preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/preview-dark.png -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/theme.conf.user: -------------------------------------------------------------------------------- 1 | [General] 2 | background=background.jpeg 3 | type=image 4 | -------------------------------------------------------------------------------- /sddm/images/preview-dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/images/preview-dark.jpeg -------------------------------------------------------------------------------- /sddm/images/preview-light.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/images/preview-light.jpeg -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/go.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/go.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kup.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kup.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/osd.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/osd.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/slc.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/slc.svgz -------------------------------------------------------------------------------- /sddm/images/background-dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/images/background-dark.jpeg -------------------------------------------------------------------------------- /sddm/images/background-light.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/images/background-light.jpeg -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kget.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kget.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kgpg.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kgpg.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kmail.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kmail.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/list.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/list.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/lock.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/lock.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/mail.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/mail.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/media.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/media.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/pamac.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/pamac.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/user.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/user.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/zoom.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/zoom.svgz -------------------------------------------------------------------------------- /sddm/README.md: -------------------------------------------------------------------------------- 1 | 2 | McMojave sddm theme for KDE Plasma desktop. 3 | 4 | ## Installation 5 | 6 | sudo ./install.sh 7 | 8 | 9 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/login.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/login.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/login.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/login.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/login.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/login.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/akonadi.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/akonadi.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/amarok.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/amarok.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/document.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/document.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kalarm.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kalarm.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kopete.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kopete.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kruler.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kruler.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kteatime.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kteatime.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/ktorrent.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/ktorrent.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/mobile.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/mobile.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/quassel.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/quassel.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/redshift.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/redshift.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/software.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/software.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/update.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/update.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/wallet.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/wallet.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/window.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/window.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/yakuake.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/yakuake.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/pamac.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons-old/pamac.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/akregator.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/akregator.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/distribute.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/distribute.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kleopatra.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kleopatra.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/video-card.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/video-card.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/konv_message.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/konv_message.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/konversation.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/konversation.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/kpackagekit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/icons/kpackagekit.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/weather/wind-arrows.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/weather/wind-arrows.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/logout_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/logout_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/switch_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/switch_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/logout_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/logout_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/switch_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/switch_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/logout_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/logout_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/switch_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/switch_primary.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/line.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/line.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/restart_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/restart_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/shutdown_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/shutdown_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/assets/suspend_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-5.0/assets/suspend_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/restart_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/restart_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/shutdown_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/shutdown_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/assets/suspend_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.0/assets/suspend_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/restart_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/restart_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/shutdown_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/shutdown_primary.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/assets/suspend_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/sddm/WhiteSur-6.2/assets/suspend_primary.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/arrows.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/arrows.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/button.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/button.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/switch.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/switch.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/tabbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/tabbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/tasks.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/tasks.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/tooltip.svgz -------------------------------------------------------------------------------- /wallpaper/WhiteSur/contents/images/3840x2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/wallpaper/WhiteSur/contents/images/3840x2160.jpg -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/clock.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/clock.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/frame.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/frame.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/line.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/line.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/notes.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/notes.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/pager.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/pager.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/tasks.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/tasks.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/line.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/line.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/scrollbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/scrollbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/button.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/button.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/calendar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/calendar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/dragger.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/dragger.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/glowbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/glowbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/lineedit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/lineedit.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/listitem.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/listitem.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/slider.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/slider.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/switch.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/switch.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/tabbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/tabbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/toolbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/toolbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/tooltip.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/viewitem.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/viewitem.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/arrows.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/arrows.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/button.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/button.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/clock.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/clock.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/switch.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/switch.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/tabbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/tabbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/tasks.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/tasks.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/tooltip.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/checkmarks.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/checkmarks.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/menubaritem.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/menubaritem.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/radiobutton.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/radiobutton.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/scrollwidget.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/scrollwidget.svgz -------------------------------------------------------------------------------- /wallpaper/WhiteSur-dark/contents/images/3840x2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/wallpaper/WhiteSur-dark/contents/images/3840x2160.jpg -------------------------------------------------------------------------------- /wallpaper/WhiteSur-light/contents/images/3840x2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/wallpaper/WhiteSur-light/contents/images/3840x2160.jpg -------------------------------------------------------------------------------- /wallpaper/WhiteSur/contents/images_dark/3840x2160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/wallpaper/WhiteSur/contents/images_dark/3840x2160.jpg -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/busywidget.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/busywidget.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/checkmarks.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/checkmarks.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/scrollbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/scrollbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/scrollbar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/scrollbar.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/solid/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/solid/widgets/tooltip.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/solid/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/solid/widgets/tooltip.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/actionbutton.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/actionbutton.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/menubaritem.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/menubaritem.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/radiobutton.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/radiobutton.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/scrollwidget.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/scrollwidget.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/menubaritem.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/menubaritem.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/radiobutton.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/radiobutton.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/scrollwidget.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/scrollwidget.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/solid/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/solid/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/panel-background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/plasmoidheading.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/widgets/plasmoidheading.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/action-overlays.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/action-overlays.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/media-delegate.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/media-delegate.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/plasmoidheading.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/plasmoidheading.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/solid/widgets/tooltip.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/solid/widgets/tooltip.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/solid/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/solid/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/bar_meter_vertical.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/bar_meter_vertical.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/margins-highlight.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/margins-highlight.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/panel-background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/solid/dialogs/background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/solid/dialogs/background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/panel-background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/plasmoidheading.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/widgets/plasmoidheading.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/solid/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur/solid/widgets/panel-background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/bar_meter_horizontal.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/bar_meter_horizontal.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/configuration-icons.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/configuration-icons.svgz -------------------------------------------------------------------------------- /configs/Xresources: -------------------------------------------------------------------------------- 1 | Xft.dpi: 96 2 | Xft.antialias: true 3 | Xft.hinting: true 4 | Xft.autohint: false 5 | Xft.hintstyle: hintslight 6 | Xft.lcdfilter: lcddefault 7 | Xft.rgba: rgb 8 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/solid/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/solid/widgets/panel-background.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/widgets/translucentbackground.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-alt/widgets/translucentbackground.svgz -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/solid/widgets/panel-background.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/desktoptheme/WhiteSur-dark/solid/widgets/panel-background.svgz -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/theme.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | showlogo=hidden 3 | logo=default-logo.svg 4 | type=image 5 | color=#1d99f3 6 | fontSize=10 7 | background=background.jpeg 8 | needsFullUserModel=false 9 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/theme.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | showlogo=hidden 3 | logo=default-logo.svg 4 | type=image 5 | color=#1d99f3 6 | fontSize=10 7 | background=background.jpeg 8 | needsFullUserModel=false 9 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/theme.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | showlogo=hidden 3 | logo=default-logo.svg 4 | type=image 5 | color=#1d99f3 6 | fontSize=10 7 | background=background.jpeg 8 | needsFullUserModel=false 9 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/splash.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/preview.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/preview.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/splash.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/splash.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/preview.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/background.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/background.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/fullscreenpreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/previews/fullscreenpreview.jpg -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/fullscreenpreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/previews/fullscreenpreview.jpg -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/images/background.png -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/fullscreenpreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/WhiteSur-kde/HEAD/plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/previews/fullscreenpreview.jpg -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | --------------------------------- WhiteSur KDE ------------------------------ 2 | 3 | Vinceliuice - (https://github.com/vinceliuice) - vinceliuice@hotmail.com 4 | 5 | --------------------------------- WhiteSur KDE ------------------------------ 6 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur-dark/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-dark 3 | X-KDE-PluginInfo-Name=WhiteSur-dark 4 | X-KDE-PluginInfo-Author=Vince Liuice 5 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 6 | X-KDE-PluginInfo-License=CC BY-NC-SA 3.0 7 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur-light/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-light 3 | X-KDE-PluginInfo-Name=WhiteSur-light 4 | X-KDE-PluginInfo-Author=Vince Liuice 5 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 6 | X-KDE-PluginInfo-License=CC BY-NC-SA 3.0 7 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/plot-background.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/plot-background.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/plasmarc: -------------------------------------------------------------------------------- 1 | [Wallpaper] 2 | defaultWallpaperTheme=WhiteSur-light 3 | defaultFileSuffix=.png 4 | defaultHeight=2160 5 | defaultWidth=3840 6 | 7 | [ContrastEffect] 8 | enabled=false 9 | contrast=0.2 10 | saturation=10 11 | 12 | [AdaptiveTransparency] 13 | enabled=true 14 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/plasmarc: -------------------------------------------------------------------------------- 1 | [Wallpaper] 2 | defaultWallpaperTheme=WhiteSur-light 3 | defaultFileSuffix=.png 4 | defaultHeight=2160 5 | defaultWidth=3840 6 | 7 | [ContrastEffect] 8 | enabled=false 9 | contrast=0.75 10 | saturation=10 11 | 12 | [AdaptiveTransparency] 13 | enabled=true 14 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/plasmarc: -------------------------------------------------------------------------------- 1 | [Wallpaper] 2 | defaultWallpaperTheme=WhiteSur-dark 3 | defaultFileSuffix=.png 4 | defaultHeight=2160 5 | defaultWidth=3840 6 | 7 | [ContrastEffect] 8 | enabled=true 9 | contrast=0.2 10 | saturation=10 11 | 12 | [AdaptiveTransparency] 13 | enabled=true 14 | -------------------------------------------------------------------------------- /aurorae/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur 3 | X-KDE-PluginInfo-Author=vince liuice 4 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 5 | X-KDE-PluginInfo-Name=WhiteSur 6 | X-KDE-PluginInfo-Version=0.3 7 | X-KDE-PluginInfo-Category= 8 | X-KDE-PluginInfo-Depends= 9 | X-KDE-PluginInfo-License=GPL_V3 10 | X-KDE-PluginInfo-EnabledByDefault=true 11 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Wallpaper", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Id": "WhiteSur", 11 | "License": "CC-BY-SA-4.0", 12 | "Name": "WhiteSur" 13 | }, 14 | "X-KDE-PlasmaImageWallpaper-AccentColor": "#ce55cf" 15 | } 16 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/Input.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.15 2 | import QtQuick.Layouts 1.15 3 | import QtQuick.Controls 2.15 4 | 5 | TextField { 6 | placeholderTextColor: config.color 7 | palette.text: config.color 8 | font.pointSize: config.fontSize 9 | font.family: config.font 10 | width: parent.width 11 | background: Rectangle { 12 | color: parent.focus ? "#ffffff" : "#dddddd" 13 | radius: 100 14 | opacity: 0.45 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/Input.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.15 2 | import QtQuick.Layouts 1.15 3 | import QtQuick.Controls 2.15 4 | 5 | TextField { 6 | placeholderTextColor: config.color 7 | palette.text: config.color 8 | font.pointSize: config.fontSize 9 | font.family: config.font 10 | width: parent.width 11 | background: Rectangle { 12 | color: parent.focus ? "#ffffff" : "#dddddd" 13 | radius: 100 14 | opacity: 0.45 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur-dark/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Wallpaper", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Id": "WhiteSur-dark", 11 | "License": "CC-BY-SA-4.0", 12 | "Name": "WhiteSur-dark" 13 | }, 14 | "X-KDE-PlasmaImageWallpaper-AccentColor": "#ce55cf" 15 | } 16 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur-light/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Wallpaper", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Id": "WhiteSur-light", 11 | "License": "CC-BY-SA-4.0", 12 | "Name": "WhiteSur-light" 13 | }, 14 | "X-KDE-PlasmaImageWallpaper-AccentColor": "#ce55cf" 15 | } 16 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/metadata.desktop: -------------------------------------------------------------------------------- 1 | [SddmGreeterTheme] 2 | Name=WhiteSur 3 | Description=MacOS Big Sur theme for KDE Plasma 4 | Author=VinceLiuice 5 | Copyright=(c) 2014, David Edmundson 6 | License=CC-BY-SA 7 | Type=sddm-theme 8 | Version=0.1 9 | Website=https://github.com/vinceliuice/WhiteSur-kde 10 | Screenshot=preview.jpeg 11 | MainScript=Main.qml 12 | ConfigFile=theme.conf 13 | TranslationsDirectory=translations 14 | Email=vinceliuice@hotmail.com 15 | Theme-Id=WhiteSur 16 | Theme-API=2.0 17 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/metadata.desktop: -------------------------------------------------------------------------------- 1 | [SddmGreeterTheme] 2 | Name=WhiteSur 3 | Description=MacOS Big Sur theme for KDE Plasma 4 | Author=VinceLiuice 5 | Copyright=(c) 2014, David Edmundson 6 | License=CC-BY-SA 7 | Type=sddm-theme 8 | Version=0.1 9 | Website=https://github.com/vinceliuice/WhiteSur-kde 10 | Screenshot=preview.jpeg 11 | MainScript=Main.qml 12 | ConfigFile=theme.conf 13 | TranslationsDirectory=translations 14 | Email=vinceliuice@hotmail.com 15 | Theme-Id=WhiteSur 16 | Theme-API=2.0 17 | QtVersion=6 18 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/metadata.desktop: -------------------------------------------------------------------------------- 1 | [SddmGreeterTheme] 2 | Name=WhiteSur 3 | Description=MacOS Big Sur theme for KDE Plasma 4 | Author=VinceLiuice 5 | Copyright=(c) 2014, David Edmundson 6 | License=CC-BY-SA 7 | Type=sddm-theme 8 | Version=0.1 9 | Website=https://github.com/vinceliuice/WhiteSur-kde 10 | Screenshot=preview.jpeg 11 | MainScript=Main.qml 12 | ConfigFile=theme.conf 13 | TranslationsDirectory=translations 14 | Email=vinceliuice@hotmail.com 15 | Theme-Id=WhiteSur 16 | Theme-API=2.0 17 | QtVersion=6 18 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/defaults: -------------------------------------------------------------------------------- 1 | [kcminputrc][Mouse] 2 | cursorTheme=WhiteSur-cursors 3 | 4 | [kdeglobals][General] 5 | ColorScheme=WhiteSur 6 | 7 | [kdeglobals][Icons] 8 | Theme=WhiteSur 9 | 10 | [kdeglobals][KDE] 11 | widgetStyle=kvantum 12 | 13 | [kwinrc][DesktopSwitcher] 14 | LayoutName=org.kde.breeze.desktop 15 | 16 | [kwinrc][WindowSwitcher] 17 | LayoutName=org.kde.breeze.desktop 18 | 19 | [kwinrc][org.kde.kdecoration2] 20 | ButtonsOnLeft=XAI 21 | ButtonsOnRight= 22 | library=org.kde.kwin.aurorae 23 | theme=__aurorae__svg__WhiteSur 24 | 25 | [plasmarc][Theme] 26 | name=WhiteSur 27 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/defaults: -------------------------------------------------------------------------------- 1 | [kcminputrc][Mouse] 2 | cursorTheme=WhiteSur-cursors 3 | 4 | [kdeglobals][General] 5 | ColorScheme=WhiteSur 6 | 7 | [kdeglobals][Icons] 8 | Theme=WhiteSur-light 9 | 10 | [kdeglobals][KDE] 11 | widgetStyle=kvantum 12 | 13 | [kwinrc][DesktopSwitcher] 14 | LayoutName=org.kde.breeze.desktop 15 | 16 | [kwinrc][WindowSwitcher] 17 | LayoutName=org.kde.breeze.desktop 18 | 19 | [kwinrc][org.kde.kdecoration2] 20 | ButtonsOnLeft=XAI 21 | ButtonsOnRight= 22 | library=org.kde.kwin.aurorae 23 | theme=__aurorae__svg__WhiteSur 24 | 25 | [plasmarc][Theme] 26 | name=WhiteSur-alt 27 | -------------------------------------------------------------------------------- /plasma/layout-templates/org.github.desktop.WhiteSurPanel/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Name=WhiteSur Panel 4 | Name[zh_CN]=WhiteSur 面板 5 | Type=Service 6 | ServiceTypes=Plasma/LayoutTemplate 7 | X-Plasma-Shell=plasmashell 8 | X-Plasma-ContainmentCategories=panel 9 | X-KDE-PluginInfo-Author=vince liuice 10 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 11 | X-KDE-PluginInfo-Name=org.github.desktop.WhiteSurPanel 12 | X-KDE-PluginInfo-Version=1.0 13 | X-KDE-PluginInfo-Website= 14 | X-KDE-PluginInfo-Category= 15 | X-KDE-PluginInfo-Depends= 16 | X-KDE-PluginInfo-License=GPL 3.0 17 | X-KDE-PluginInfo-EnabledByDefault=true 18 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/defaults: -------------------------------------------------------------------------------- 1 | [kcminputrc][Mouse] 2 | cursorTheme=WhiteSur-cursors 3 | 4 | [kdeglobals][General] 5 | ColorScheme=WhiteSurDark 6 | 7 | [kdeglobals][Icons] 8 | Theme=WhiteSur-dark 9 | 10 | [kdeglobals][KDE] 11 | widgetStyle=kvantum-dark 12 | 13 | [kwinrc][DesktopSwitcher] 14 | LayoutName=org.kde.breeze.desktop 15 | 16 | [kwinrc][WindowSwitcher] 17 | LayoutName=org.kde.breeze.desktop 18 | 19 | [kwinrc][org.kde.kdecoration2] 20 | ButtonsOnLeft=XAI 21 | ButtonsOnRight= 22 | library=org.kde.kwin.aurorae 23 | theme=__aurorae__svg__WhiteSur-dark 24 | 25 | [plasmarc][Theme] 26 | name=WhiteSur-dark 27 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/logout/timer.js: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2018 David Edmundson 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | .pragma library 8 | 9 | //written as a library to share knowledge of when a key was pressed 10 | //between the multiple views, so pressing a key on one cancels all timers 11 | 12 | var callbacks = []; 13 | 14 | function addCancelAutoTriggerCallback(callback) { 15 | callbacks.push(callback); 16 | } 17 | 18 | function cancelAutoTrigger() { 19 | callbacks.forEach(function(c) { 20 | if (!c) { 21 | return; 22 | } 23 | c(); 24 | }); 25 | } 26 | 27 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/logout/timer.js: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2018 David Edmundson 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | .pragma library 8 | 9 | //written as a library to share knowledge of when a key was pressed 10 | //between the multiple views, so pressing a key on one cancels all timers 11 | 12 | var callbacks = []; 13 | 14 | function addCancelAutoTriggerCallback(callback) { 15 | callbacks.push(callback); 16 | } 17 | 18 | function cancelAutoTrigger() { 19 | callbacks.forEach(function(c) { 20 | if (!c) { 21 | return; 22 | } 23 | c(); 24 | }); 25 | } 26 | 27 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/logout/timer.js: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2018 David Edmundson 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | .pragma library 8 | 9 | //written as a library to share knowledge of when a key was pressed 10 | //between the multiple views, so pressing a key on one cancels all timers 11 | 12 | var callbacks = []; 13 | 14 | function addCancelAutoTriggerCallback(callback) { 15 | callbacks.push(callback); 16 | } 17 | 18 | function cancelAutoTrigger() { 19 | callbacks.forEach(function(c) { 20 | if (!c) { 21 | return; 22 | } 23 | c(); 24 | }); 25 | } 26 | 27 | -------------------------------------------------------------------------------- /aurorae/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "aurorae", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Category": "Plasma 6 Window Decorations", 11 | "ServiceTypes": [ 12 | "aurorae" 13 | ], 14 | "EnabledByDefault": true, 15 | "Name": "WhiteSur", 16 | "Description" : "WhiteSur window decorations", 17 | "Id": "WhiteSur", 18 | "License": "GPL v3", 19 | "Version": "1.0", 20 | "X-KDE-PluginInfo-blur": false, 21 | "X-KPackage-Dependencies": [ 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/korgac.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "vinceliuice@hotmail.com", 6 | "Name": "Vince Liuice" 7 | } 8 | ], 9 | "Category": "Plasma 6.0 theme", 10 | "Description": "WhiteSur by Vince Liuice", 11 | "Description[zh_CN]": "WhiteSur 苹果主题,由 Vince Liuice (视觉设计师) 设计制作", 12 | "EnabledByDefault": true, 13 | "Id": "WhiteSur", 14 | "License": "GPL-3.0", 15 | "Name": "WhiteSur", 16 | "Name[zh_CN]": "WhiteSur 苹果", 17 | "Version": "6.2.0", 18 | "Website": "https://github.com/vinceliuice" 19 | }, 20 | "X-Plasma-API": "5.0" 21 | } 22 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/korgac.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "vinceliuice@hotmail.com", 6 | "Name": "Vince Liuice" 7 | } 8 | ], 9 | "Category": "Plasma 6.0 theme", 10 | "Description": "WhiteSur by Vince Liuice", 11 | "Description[zh_CN]": "WhiteSur 苹果主题,由 Vince Liuice (视觉设计师) 设计制作", 12 | "EnabledByDefault": true, 13 | "Id": "WhiteSur-alt", 14 | "License": "GPL-3.0", 15 | "Name": "WhiteSur-alt", 16 | "Name[zh_CN]": "WhiteSur-alt 苹果", 17 | "Version": "6.2.0", 18 | "Website": "https://github.com/vinceliuice" 19 | }, 20 | "X-Plasma-API": "5.0" 21 | } 22 | -------------------------------------------------------------------------------- /wallpaper/WhiteSur/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur 3 | Comment=MacOS BigSur Wallpapers 4 | 5 | X-KDE-PluginInfo-Author=Vince Liuice 6 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 7 | X-KDE-PluginInfo-Name=WhiteSur 8 | X-KDE-PluginInfo-Version=1.0 9 | X-KDE-PluginInfo-Website=https://github.com/vinceliuice/WhiteSur-kde 10 | X-KDE-PluginInfo-Category= 11 | X-KDE-PluginInfo-Depends= 12 | X-KDE-PluginInfo-License=CC-BY-SA 13 | X-KDE-PluginInfo-EnabledByDefault=true 14 | X-Plasma-API=5.0 15 | 16 | [Settings] 17 | FallbackTheme=default 18 | 19 | [Wallpaper] 20 | defaultWallpaperTheme=WhiteSur 21 | defaultFileSuffix=.png 22 | defaultWidth=3840 23 | defaultHeight=2160 24 | 25 | [Branding] 26 | homepage=https://github.com/vinceliuice 27 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "vinceliuice@hotmail.com", 6 | "Name": "Vince Liuice" 7 | } 8 | ], 9 | "Category": "Plasma 6.0 theme", 10 | "Description": "WhiteSur dark by Vince Liuice", 11 | "Description[zh_CN]": "WhiteSur 暗黑苹果主题,由 Vince Liuice (视觉设计师) 设计制作", 12 | "EnabledByDefault": true, 13 | "Id": "WhiteSur-dark", 14 | "License": "GPL-3.0", 15 | "Name": "WhiteSur-dark", 16 | "Name[zh_CN]": "WhiteSur 暗黑苹果", 17 | "Version": "6.2.0", 18 | "Website": "https://github.com/vinceliuice" 19 | }, 20 | "X-Plasma-API": "5.0" 21 | } 22 | -------------------------------------------------------------------------------- /plasma/plasmoids/org.kde.plasma.splitdigitalclock/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Split Digital Clock 3 | 4 | Comment=Time displayed in a split digital format 5 | 6 | Icon=preferences-system-time 7 | Type=Service 8 | X-KDE-ParentApp= 9 | X-KDE-PluginInfo-Author=Adhe 10 | X-KDE-PluginInfo-Email=adhemarks2@gmail.com 11 | X-KDE-PluginInfo-License=GPL-2.0+ 12 | X-KDE-PluginInfo-Name=org.kde.plasma.splitdigitalclock 13 | X-KDE-PluginInfo-Version=3.0 14 | X-KDE-PluginInfo-Website=plasma.kde.org 15 | X-KDE-ServiceTypes=Plasma/Applet 16 | X-Plasma-API=declarativeappletscript 17 | X-KDE-PluginInfo-Category=Date and Time 18 | X-Plasma-Provides=org.kde.plasma.time,org.kde.plasma.date 19 | 20 | X-Plasma-MainScript=ui/main.qml 21 | X-Plasma-RemoteLocation= 22 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/logout/LogoutButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Marco Martin 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.2 8 | import QtQuick.Layouts 1.2 9 | 10 | import org.kde.kirigami 2.20 as Kirigami 11 | 12 | import org.kde.breeze.components 13 | import "timer.js" as AutoTriggerTimer 14 | 15 | ActionButton { 16 | Layout.alignment: Qt.AlignTop 17 | 18 | icon.width: Kirigami.Units.iconSizes.huge 19 | icon.height: Kirigami.Units.iconSizes.huge 20 | 21 | font.underline: false // See https://phabricator.kde.org/D9452 22 | opacity: activeFocus || hovered ? 1 : 0.5 23 | 24 | Keys.onPressed: { 25 | AutoTriggerTimer.cancelAutoTrigger(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/logout/LogoutButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Marco Martin 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.2 8 | import QtQuick.Layouts 1.2 9 | 10 | import org.kde.kirigami 2.20 as Kirigami 11 | 12 | import org.kde.breeze.components 13 | import "timer.js" as AutoTriggerTimer 14 | 15 | ActionButton { 16 | Layout.alignment: Qt.AlignTop 17 | 18 | icon.width: Kirigami.Units.iconSizes.huge 19 | icon.height: Kirigami.Units.iconSizes.huge 20 | 21 | font.underline: false // See https://phabricator.kde.org/D9452 22 | opacity: activeFocus || hovered ? 1 : 0.5 23 | 24 | Keys.onPressed: { 25 | AutoTriggerTimer.cancelAutoTrigger(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/logout/LogoutButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Marco Martin 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.2 8 | import QtQuick.Layouts 1.2 9 | 10 | import org.kde.kirigami 2.20 as Kirigami 11 | 12 | import org.kde.breeze.components 13 | import "timer.js" as AutoTriggerTimer 14 | 15 | ActionButton { 16 | Layout.alignment: Qt.AlignTop 17 | 18 | icon.width: Kirigami.Units.iconSizes.huge 19 | icon.height: Kirigami.Units.iconSizes.huge 20 | 21 | font.underline: false // See https://phabricator.kde.org/D9452 22 | opacity: activeFocus || hovered ? 1 : 0.5 23 | 24 | Keys.onPressed: { 25 | AutoTriggerTimer.cancelAutoTrigger(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/yakuake.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/faces/.face.icon: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/faces/.face.icon: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/faces/.face.icon: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur 3 | Comment=Brings a MacOS like theme to the desktop 4 | 5 | X-KDE-PluginInfo-Author=Vinceliuice 6 | X-KDE-PluginInfo-Category= 7 | X-KDE-PluginInfo-Depends= 8 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 9 | X-KDE-PluginInfo-EnabledByDefault=true 10 | X-KDE-PluginInfo-License=GPL3.0 11 | X-KDE-PluginInfo-Name=WhiteSur 12 | X-KDE-PluginInfo-Version=0.1 13 | X-KDE-PluginInfo-Website= 14 | X-Plasma-API=5.0 15 | 16 | [Wallpaper] 17 | defaultWallpaperTheme=WhiteSur-light 18 | defaultFileSuffix=.png 19 | defaultHeight=2160 20 | defaultWidth=3840 21 | 22 | [ContrastEffect] 23 | enabled=false 24 | contrast=0.3 25 | intensity=1.9 26 | saturation=1.9 27 | 28 | [AdaptiveTransparency] 29 | enabled = true 30 | 31 | [Settings] 32 | FallbackTheme=oxygen 33 | 34 | [BlurBehindEffect] 35 | enabled=true 36 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-alt/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-alt 3 | Comment=Brings a MacOS like theme to the desktop 4 | 5 | X-KDE-PluginInfo-Author=Vinceliuice 6 | X-KDE-PluginInfo-Category= 7 | X-KDE-PluginInfo-Depends= 8 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 9 | X-KDE-PluginInfo-EnabledByDefault=true 10 | X-KDE-PluginInfo-License=GPL3.0 11 | X-KDE-PluginInfo-Name=WhiteSur-alt 12 | X-KDE-PluginInfo-Version=0.1 13 | X-KDE-PluginInfo-Website= 14 | X-Plasma-API=5.0 15 | 16 | [Wallpaper] 17 | defaultWallpaperTheme=WhiteSur-light 18 | defaultFileSuffix=.png 19 | defaultHeight=2160 20 | defaultWidth=3840 21 | 22 | [ContrastEffect] 23 | enabled=false 24 | contrast=0.3 25 | intensity=1.9 26 | saturation=1.9 27 | 28 | [AdaptiveTransparency] 29 | enabled = true 30 | 31 | [Settings] 32 | FallbackTheme=oxygen 33 | 34 | [BlurBehindEffect] 35 | enabled=true 36 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-dark 3 | Comment=Brings a MacOS like theme to the desktop 4 | 5 | X-KDE-PluginInfo-Author=Vinceliuice 6 | X-KDE-PluginInfo-Category= 7 | X-KDE-PluginInfo-Depends= 8 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 9 | X-KDE-PluginInfo-EnabledByDefault=true 10 | X-KDE-PluginInfo-License=GPL3.0 11 | X-KDE-PluginInfo-Name=WhiteSur-dark 12 | X-KDE-PluginInfo-Version=0.1 13 | X-KDE-PluginInfo-Website= 14 | X-Plasma-API=5.0 15 | 16 | [Wallpaper] 17 | defaultWallpaperTheme=WhiteSur-dark 18 | defaultFileSuffix=.png 19 | defaultHeight=2160 20 | defaultWidth=3840 21 | 22 | [ContrastEffect] 23 | enabled=false 24 | contrast=0.2 25 | intensity=1.4 26 | saturation=10 27 | 28 | [AdaptiveTransparency] 29 | enabled = true 30 | 31 | [Settings] 32 | FallbackTheme=oxygen 33 | 34 | [BlurBehindEffect] 35 | enabled=true 36 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/components/VirtualKeyboard_wayland.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | import org.kde.plasma.workspace.keyboardlayout 1.0 as Keyboards 10 | 11 | Item { 12 | id: inputPanel 13 | readonly property bool active: Keyboards.KWinVirtualKeyboard.visible 14 | property bool activated: false 15 | visible: Keyboards.KWinVirtualKeyboard.visible 16 | 17 | x: Qt.inputMethod.keyboardRectangle.x 18 | y: Qt.inputMethod.keyboardRectangle.y 19 | height: Qt.inputMethod.keyboardRectangle.height 20 | width: Qt.inputMethod.keyboardRectangle.width 21 | 22 | onActivatedChanged: if (activated) { 23 | Keyboards.KWinVirtualKeyboard.enabled = true 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/vlc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/vlc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/plasmoids/org.kde.plasma.splitdigitalclock/contents/ui/MonthMenu.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013 Sebastian Kügler 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License as 6 | * published by the Free Software Foundation; either version 2 of 7 | * the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see . 16 | */ 17 | import QtQuick 2.0 18 | import org.kde.plasma.calendar 2.0 as PlasmaCalendar 19 | 20 | PlasmaCalendar.MonthMenu { } -------------------------------------------------------------------------------- /plasma/plasmoids/org.kde.plasma.splitdigitalclock/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "adhe", 6 | "Name": "adhemarks@gmail.com" 7 | } 8 | ], 9 | "Category": "Date and Time", 10 | "Description": "Time displayed in a split digital format", 11 | "Icon": "preferences-system-time", 12 | "Id": "org.kde.plasma.splitdigitalclock", 13 | "License": "GPL-2.0+", 14 | "Name": "Split Digital Clock", 15 | 16 | "ServiceTypes": [ 17 | "Plasma/Applet" 18 | ], 19 | "Version": "3.0", 20 | "Website": "plasma.kde.org" 21 | }, 22 | "X-KDE-ParentApp": "", 23 | "X-Plasma-API": "declarativeappletscript", 24 | "X-Plasma-MainScript": "ui/main.qml", 25 | "X-Plasma-Provides": [ 26 | "org.kde.plasma.time", 27 | "org.kde.plasma.date" 28 | ], 29 | "X-Plasma-RemoteLocation": "" 30 | } 31 | -------------------------------------------------------------------------------- /aurorae/main-sharp/WhiteSur-sharprc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=68,68,68 4 | ActiveTextShadowColor=0,0,0,255 5 | ActiveUnfocusedTabColor=120,120,120 6 | TitleAlignment=Center 7 | TitleVerticalAlignment=Center 8 | UseTextShadow=true 9 | InactiveFocusedTabColor=120,120,120 10 | InactiveTextColor=177,177,177 11 | InactiveTextShadowColor=0,0,0,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderLeft=1 21 | BorderRight=1 22 | BorderBottom=12 23 | TitleEdgeTop=8 24 | TitleEdgeBottom=8 25 | TitleEdgeLeft=16 26 | TitleEdgeRight=16 27 | TitleBorderLeft=50 28 | TitleBorderRight=50 29 | TitleHeight=16 30 | ButtonWidth=16 31 | ButtonHeight=16 32 | ButtonSpacing=10 33 | ButtonMarginTop=2 34 | ButtonMarginLeft=0 35 | ButtonMarginRight=0 36 | ExplicitButtonSpacer=0 37 | PaddingTop=21 38 | PaddingBottom=59 39 | PaddingRight=41 40 | PaddingLeft=41 41 | TitleEdgeTopMaximized=8 42 | TitleEdgeBottomMaximized=8 43 | TitleEdgeLeftMaximized=16 44 | TitleEdgeRightMaximized=16 45 | -------------------------------------------------------------------------------- /aurorae/main-opaque/WhiteSur-opaquerc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=68,68,68 4 | ActiveTextShadowColor=0,0,0,255 5 | ActiveUnfocusedTabColor=120,120,120 6 | TitleAlignment=Center 7 | TitleVerticalAlignment=Center 8 | UseTextShadow=true 9 | InactiveFocusedTabColor=120,120,120 10 | InactiveTextColor=177,177,177 11 | InactiveTextShadowColor=0,0,0,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderLeft=1 21 | BorderRight=1 22 | BorderBottom=12 23 | TitleEdgeTop=8 24 | TitleEdgeBottom=8 25 | TitleEdgeLeft=16 26 | TitleEdgeRight=16 27 | TitleBorderLeft=50 28 | TitleBorderRight=50 29 | TitleHeight=16 30 | ButtonWidth=16 31 | ButtonHeight=16 32 | ButtonSpacing=10 33 | ButtonMarginTop=2 34 | ButtonMarginLeft=0 35 | ButtonMarginRight=0 36 | ExplicitButtonSpacer=0 37 | PaddingTop=21 38 | PaddingBottom=67 39 | PaddingRight=41 40 | PaddingLeft=41 41 | TitleEdgeTopMaximized=8 42 | TitleEdgeBottomMaximized=8 43 | TitleEdgeLeftMaximized=16 44 | TitleEdgeRightMaximized=16 45 | -------------------------------------------------------------------------------- /aurorae/main/WhiteSurrc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=68,68,68 4 | ActiveTextShadowColor=0,0,0,255 5 | ActiveUnfocusedTabColor=120,120,120 6 | TitleAlignment=Center 7 | TitleVerticalAlignment=Center 8 | UseTextShadow=true 9 | InactiveFocusedTabColor=120,120,120 10 | InactiveTextColor=177,177,177 11 | InactiveTextShadowColor=0,0,0,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderTop=0 21 | BorderLeft=0 22 | BorderRight=0 23 | BorderBottom=0 24 | TitleEdgeTop=8 25 | TitleEdgeBottom=8 26 | TitleEdgeLeft=16 27 | TitleEdgeRight=16 28 | TitleBorderLeft=50 29 | TitleBorderRight=50 30 | TitleHeight=16 31 | ButtonWidth=16 32 | ButtonHeight=16 33 | ButtonSpacing=10 34 | ButtonMarginTop=2 35 | ButtonMarginLeft=0 36 | ButtonMarginRight=0 37 | ExplicitButtonSpacer=0 38 | PaddingTop=21 39 | PaddingBottom=79 40 | PaddingRight=41 41 | PaddingLeft=41 42 | TitleEdgeTopMaximized=8 43 | TitleEdgeBottomMaximized=8 44 | TitleEdgeLeftMaximized=16 45 | TitleEdgeRightMaximized=16 46 | -------------------------------------------------------------------------------- /aurorae/main-opaque/WhiteSur-dark-opaquerc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=225,225,225 4 | ActiveUnfocusedTabColor=120,120,120 5 | TitleAlignment=Center 6 | TitleVerticalAlignment=Center 7 | UseTextShadow=true 8 | InactiveFocusedTabColor=120,120,120 9 | InactiveTextColor=120,120,120 10 | ActiveTextShadowColor=255,255,255 11 | InactiveTextShadowColor=255,255,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderLeft=1 21 | BorderRight=1 22 | BorderBottom=12 23 | TitleEdgeTop=8 24 | TitleEdgeBottom=8 25 | TitleEdgeLeft=16 26 | TitleEdgeRight=16 27 | TitleBorderLeft=50 28 | TitleBorderRight=50 29 | TitleHeight=16 30 | ButtonWidth=16 31 | ButtonHeight=16 32 | ButtonSpacing=10 33 | ButtonMarginTop=2 34 | ButtonMarginLeft=0 35 | ButtonMarginRight=0 36 | ExplicitButtonSpacer=0 37 | PaddingTop=21 38 | PaddingBottom=67 39 | PaddingRight=41 40 | PaddingLeft=41 41 | TitleEdgeTopMaximized=8 42 | TitleEdgeBottomMaximized=8 43 | TitleEdgeLeftMaximized=16 44 | TitleEdgeRightMaximized=16 45 | -------------------------------------------------------------------------------- /aurorae/main-sharp/WhiteSur-dark-sharprc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=225,225,225 4 | ActiveUnfocusedTabColor=120,120,120 5 | TitleAlignment=Center 6 | TitleVerticalAlignment=Center 7 | UseTextShadow=true 8 | InactiveFocusedTabColor=120,120,120 9 | InactiveTextColor=120,120,120 10 | ActiveTextShadowColor=255,255,255 11 | InactiveTextShadowColor=255,255,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderLeft=1 21 | BorderRight=1 22 | BorderBottom=12 23 | TitleEdgeTop=8 24 | TitleEdgeBottom=8 25 | TitleEdgeLeft=16 26 | TitleEdgeRight=16 27 | TitleBorderLeft=50 28 | TitleBorderRight=50 29 | TitleHeight=16 30 | ButtonWidth=16 31 | ButtonHeight=16 32 | ButtonSpacing=10 33 | ButtonMarginTop=2 34 | ButtonMarginLeft=0 35 | ButtonMarginRight=0 36 | ExplicitButtonSpacer=0 37 | PaddingTop=21 38 | PaddingBottom=59 39 | PaddingRight=41 40 | PaddingLeft=41 41 | TitleEdgeTopMaximized=8 42 | TitleEdgeBottomMaximized=8 43 | TitleEdgeLeftMaximized=16 44 | TitleEdgeRightMaximized=16 45 | -------------------------------------------------------------------------------- /aurorae/main/WhiteSur-darkrc: -------------------------------------------------------------------------------- 1 | [General] 2 | ActiveFocusedTabColor=78,78,78 3 | ActiveTextColor=225,225,225 4 | ActiveUnfocusedTabColor=120,120,120 5 | TitleAlignment=Center 6 | TitleVerticalAlignment=Center 7 | UseTextShadow=true 8 | InactiveFocusedTabColor=120,120,120 9 | InactiveTextColor=120,120,120 10 | ActiveTextShadowColor=255,255,255 11 | InactiveTextShadowColor=255,255,255 12 | InactiveUnfocusedTabColor=120,120,120 13 | TextShadowOffsetX=0 14 | TextShadowOffsetY=1 15 | LeftButtons=XIA 16 | Shadow=true 17 | Animation=1 18 | 19 | [Layout] 20 | BorderTop=0 21 | BorderLeft=0 22 | BorderRight=0 23 | BorderBottom=0 24 | TitleEdgeTop=8 25 | TitleEdgeBottom=8 26 | TitleEdgeLeft=16 27 | TitleEdgeRight=16 28 | TitleBorderLeft=50 29 | TitleBorderRight=50 30 | TitleHeight=16 31 | ButtonWidth=16 32 | ButtonHeight=16 33 | ButtonSpacing=10 34 | ButtonMarginTop=2 35 | ButtonMarginLeft=0 36 | ButtonMarginRight=0 37 | ExplicitButtonSpacer=0 38 | PaddingTop=20 39 | PaddingBottom=79 40 | PaddingRight=40 41 | PaddingLeft=40 42 | TitleEdgeTopMaximized=8 43 | TitleEdgeBottomMaximized=8 44 | TitleEdgeLeftMaximized=16 45 | TitleEdgeRightMaximized=16 46 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur 3 | Comment=Macos Big Sur theme for kde plasma 4 | Encoding=UTF-8 5 | Keywords=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate; 6 | Type=Service 7 | 8 | X-KDE-ParentApp= 9 | X-KDE-ServiceTypes=Plasma/LookAndFeel 10 | X-KDE-PluginInfo-Category= 11 | X-KDE-PluginInfo-EnabledByDefault=true 12 | X-KDE-PluginInfo-Author=Vince Liuice 13 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 14 | X-KDE-PluginInfo-License=GPL3.0 15 | X-KDE-PluginInfo-Version=0.1 16 | X-KDE-PluginInfo-Name=com.github.vinceliuice.WhiteSur 17 | X-KDE-PluginInfo-Website=https://github.com/vinceliuice/WhiteSur-kde 18 | X-KDE-fallbackPackage=org.kde.breeze.desktop 19 | X-Plasma-MainScript=defaults 20 | X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1398831,kns://plasma-themes.knsrc/api.kde-look.org/1398837,kns://aurorae.knsrc/api.kde-look.org/1398835,kns://wallpaper.knsrc/api.kde-look.org/1398833,kns://sddmtheme.knsrc/api.kde-look.org/1398839,kns://icons.knsrc/api.kde-look.org/1405756,kns://xcursor.knsrc/api.kde-look.org/1411743 21 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-alt 3 | Comment=Macos Big Sur theme for kde plasma 4 | Encoding=UTF-8 5 | Keywords=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate; 6 | Type=Service 7 | 8 | X-KDE-ParentApp= 9 | X-KDE-ServiceTypes=Plasma/LookAndFeel 10 | X-KDE-PluginInfo-Category= 11 | X-KDE-PluginInfo-EnabledByDefault=true 12 | X-KDE-PluginInfo-Author=Vince Liuice 13 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 14 | X-KDE-PluginInfo-License=GPL3.0 15 | X-KDE-PluginInfo-Version=0.1 16 | X-KDE-PluginInfo-Name=com.github.vinceliuice.WhiteSur-alt 17 | X-KDE-PluginInfo-Website=https://github.com/vinceliuice/WhiteSur-kde 18 | X-KDE-fallbackPackage=org.kde.breeze.desktop 19 | X-Plasma-MainScript=defaults 20 | X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1398831,kns://plasma-themes.knsrc/api.kde-look.org/1400407,kns://aurorae.knsrc/api.kde-look.org/1398835,kns://wallpaper.knsrc/api.kde-look.org/1398833,kns://sddmtheme.knsrc/api.kde-look.org/1398839,kns://icons.knsrc/api.kde-look.org/1405756,kns://xcursor.knsrc/api.kde-look.org/1411743 21 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=WhiteSur-dark 3 | Comment=Macos Big Sur theme for kde plasma 4 | Encoding=UTF-8 5 | Keywords=Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate; 6 | Type=Service 7 | 8 | X-KDE-ParentApp= 9 | X-KDE-ServiceTypes=Plasma/LookAndFeel 10 | X-KDE-PluginInfo-Category= 11 | X-KDE-PluginInfo-EnabledByDefault=true 12 | X-KDE-PluginInfo-Author=Vince Liuice 13 | X-KDE-PluginInfo-Email=vinceliuice@hotmail.com 14 | X-KDE-PluginInfo-License=GPL3.0 15 | X-KDE-PluginInfo-Version=0.1 16 | X-KDE-PluginInfo-Name=com.github.vinceliuice.WhiteSur-dark 17 | X-KDE-PluginInfo-Website=https://github.com/vinceliuice/WhiteSur-kde 18 | X-KDE-fallbackPackage=org.kde.breeze.desktop 19 | X-Plasma-MainScript=defaults 20 | X-KPackage-Dependencies=kns://colorschemes.knsrc/api.kde-look.org/1398831,kns://plasma-themes.knsrc/api.kde-look.org/1400409,kns://aurorae.knsrc/api.kde-look.org/1398835,kns://wallpaper.knsrc/api.kde-look.org/1398833,kns://sddmtheme.knsrc/api.kde-look.org/1398839,kns://icons.knsrc/api.kde-look.org/1405756,kns://xcursor.knsrc/api.kde-look.org/1411743 21 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/components/animation/RejectPasswordAnimation.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2022 ivan (@ratijas) tkachenko 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | import QtQml 2.15 9 | 10 | QtObject { 11 | id: root 12 | 13 | property Item target 14 | 15 | readonly property Animation __animation: RejectPasswordPathAnimation { 16 | id: animation 17 | target: Item { id: fakeTarget } 18 | } 19 | 20 | property Binding __bindEnabled: Binding { 21 | target: root.target 22 | property: "enabled" 23 | value: false 24 | when: animation.running 25 | restoreMode: Binding.RestoreBindingOrValue 26 | } 27 | 28 | // real target is getting a Translate object which pulls coordinates from 29 | // a fake Item object 30 | property Binding __bindTransform: Binding { 31 | target: root.target 32 | property: "transform" 33 | value: Translate { 34 | x: fakeTarget.x 35 | } 36 | restoreMode: Binding.RestoreBindingOrValue 37 | } 38 | 39 | function start() { 40 | animation.start(); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/manjaro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/components/Clock.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | import QtQuick.Layouts 1.15 9 | 10 | import org.kde.plasma.components 3.0 as PlasmaComponents3 11 | import org.kde.plasma.core 2.0 as PlasmaCore 12 | 13 | ColumnLayout { 14 | readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software 15 | 16 | PlasmaComponents3.Label { 17 | text: Qt.formatTime(timeSource.data["Local"]["DateTime"]) 18 | style: softwareRendering ? Text.Outline : Text.Normal 19 | styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter 20 | font.pointSize: 48 21 | Layout.alignment: Qt.AlignHCenter 22 | } 23 | PlasmaComponents3.Label { 24 | text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate) 25 | style: softwareRendering ? Text.Outline : Text.Normal 26 | styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter 27 | font.pointSize: 24 28 | Layout.alignment: Qt.AlignHCenter 29 | } 30 | PlasmaCore.DataSource { 31 | id: timeSource 32 | engine: "time" 33 | connectedSources: ["Local"] 34 | interval: 1000 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/LookAndFeel", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Category": "Global Themes (Plasma 6)", 11 | "ServiceTypes": [ 12 | "Plasma/LookAndFeel" 13 | ], 14 | "EnabledByDefault": true, 15 | "Description": "MacOS like theme for kde plasma", 16 | "Id": "com.github.vinceliuice.WhiteSur", 17 | "License": "GPLv3", 18 | "Name": "WhiteSur", 19 | "Website": "https://github.com/vinceliuice/WhiteSur-kde" 20 | }, 21 | "Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;", 22 | "X-KDE-fallbackPackage": "org.kde.breeze.desktop", 23 | "X-Plasma-MainScript": "defaults", 24 | "X-Plasma-APIVersion": "2", 25 | "X-KPackage-Dependencies": [ 26 | "kns://colorschemes.knsrc/api.kde-look.org/1398831", 27 | "kns://plasma-themes.knsrc/api.kde-look.org/1398837", 28 | "kns://aurorae.knsrc/api.kde-look.org/1398835", 29 | "kns://wallpaper.knsrc/api.kde-look.org/1398833", 30 | "kns://sddmtheme.knsrc/api.kde-look.org/1398839", 31 | "kns://icons.knsrc/api.kde-look.org/1405756", 32 | "kns://xcursor.knsrc/api.kde-look.org/1411743" 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/LookAndFeel", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Category": "Global Themes (Plasma 6)", 11 | "ServiceTypes": [ 12 | "Plasma/LookAndFeel" 13 | ], 14 | "EnabledByDefault": true, 15 | "Description": "MacOS like theme for kde plasma", 16 | "Id": "com.github.vinceliuice.WhiteSur-alt", 17 | "License": "GPLv3", 18 | "Name": "WhiteSur-alt", 19 | "Website": "https://github.com/vinceliuice/WhiteSur-kde" 20 | }, 21 | "Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;", 22 | "X-KDE-fallbackPackage": "org.kde.breeze.desktop", 23 | "X-Plasma-MainScript": "defaults", 24 | "X-Plasma-APIVersion": "2", 25 | "X-KPackage-Dependencies": [ 26 | "kns://colorschemes.knsrc/api.kde-look.org/1398831", 27 | "kns://plasma-themes.knsrc/api.kde-look.org/1400407", 28 | "kns://aurorae.knsrc/api.kde-look.org/1398835", 29 | "kns://wallpaper.knsrc/api.kde-look.org/1398833", 30 | "kns://sddmtheme.knsrc/api.kde-look.org/1398839", 31 | "kns://icons.knsrc/api.kde-look.org/1405756", 32 | "kns://xcursor.knsrc/api.kde-look.org/1411743" 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/LookAndFeel", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "vinceliuice@hotmail.com", 7 | "Name": "Vince Liuice" 8 | } 9 | ], 10 | "Category": "Global Themes (Plasma 6)", 11 | "ServiceTypes": [ 12 | "Plasma/LookAndFeel" 13 | ], 14 | "EnabledByDefault": true, 15 | "Description": "MacOS like theme for kde plasma", 16 | "Id": "com.github.vinceliuice.WhiteSur-dark", 17 | "License": "GPLv3", 18 | "Name": "WhiteSur-dark", 19 | "Website": "https://github.com/vinceliuice/WhiteSur-kde" 20 | }, 21 | "Keywords": "Desktop;Workspace;Appearance;Look and Feel;Logout;Lock;Suspend;Shutdown;Hibernate;", 22 | "X-KDE-fallbackPackage": "org.kde.breeze.desktop", 23 | "X-Plasma-MainScript": "defaults", 24 | "X-Plasma-APIVersion": "2", 25 | "X-KPackage-Dependencies": [ 26 | "kns://colorschemes.knsrc/api.kde-look.org/1398831", 27 | "kns://plasma-themes.knsrc/api.kde-look.org/1400409", 28 | "kns://aurorae.knsrc/api.kde-look.org/1398835", 29 | "kns://wallpaper.knsrc/api.kde-look.org/1398833", 30 | "kns://sddmtheme.knsrc/api.kde-look.org/1398839", 31 | "kns://icons.knsrc/api.kde-look.org/1405756", 32 | "kns://xcursor.knsrc/api.kde-look.org/1411743" 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur/widgets/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /plasma/desktoptheme/WhiteSur-dark/widgets/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons/bookmarks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/bookmarks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | ROOT_UID=0 4 | 5 | # Destination directory 6 | if [ "$UID" -eq "$ROOT_UID" ]; then 7 | AURORAE_DIR="/usr/share/aurorae/themes" 8 | SCHEMES_DIR="/usr/share/color-schemes" 9 | PLASMA_DIR="/usr/share/plasma/desktoptheme" 10 | LOOKFEEL_DIR="/usr/share/plasma/look-and-feel" 11 | KVANTUM_DIR="/usr/share/Kvantum" 12 | WALLPAPER_DIR="/usr/share/wallpapers" 13 | else 14 | AURORAE_DIR="$HOME/.local/share/aurorae/themes" 15 | SCHEMES_DIR="$HOME/.local/share/color-schemes" 16 | PLASMA_DIR="$HOME/.local/share/plasma/desktoptheme" 17 | LOOKFEEL_DIR="$HOME/.local/share/plasma/look-and-feel" 18 | KVANTUM_DIR="$HOME/.config/Kvantum" 19 | WALLPAPER_DIR="$HOME/.local/share/wallpapers" 20 | fi 21 | 22 | SRC_DIR=$(cd $(dirname $0) && pwd) 23 | 24 | THEME_NAME=WhiteSur 25 | LATTE_DIR="$HOME/.config/latte" 26 | 27 | uninstall() { 28 | local name=${1} 29 | 30 | [[ -d ${AURORAE_DIR}/${name} ]] && rm -rfv ${AURORAE_DIR}/${name}* 31 | [[ -d ${PLASMA_DIR}/${name} ]] && rm -rfv ${PLASMA_DIR}/${name}* 32 | [[ -f ${SCHEMES_DIR}/${name}.colors ]] && rm -rfv ${SCHEMES_DIR}/${name}*.colors 33 | [[ -d ${LOOKFEEL_DIR}/com.github.vinceliuice.${name} ]] && rm -rfv ${LOOKFEEL_DIR}/com.github.vinceliuice.${name}* 34 | [[ -d ${KVANTUM_DIR}/${name} ]] && rm -rfv ${KVANTUM_DIR}/${name}* 35 | [[ -d ${WALLPAPER_DIR}/${name} ]] && rm -rfv ${WALLPAPER_DIR}/${name} 36 | [[ -f ${LATTE_DIR}/${name}.layout.latte ]] && rm -rfv ${LATTE_DIR}/${name}.layout.latte 37 | } 38 | 39 | echo "Uninstalling '${THEME_NAME} kde themes'..." 40 | 41 | uninstall "${name:-${THEME_NAME}}" 42 | 43 | echo "Uninstall finished..." 44 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/konversation.svg: -------------------------------------------------------------------------------- 1 | 2 | 13 | 15 | 16 | 18 | image/svg+xml 19 | 21 | 22 | 23 | 24 | 25 | 27 | 31 | 32 | 35 | 37 | 43 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/Background.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Boudhayan Gupta 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | FocusScope { 10 | id: sceneBackground 11 | 12 | property var sceneBackgroundType 13 | property alias sceneBackgroundColor: sceneColorBackground.color 14 | property alias sceneBackgroundImage: sceneImageBackground.source 15 | 16 | Rectangle { 17 | id: sceneColorBackground 18 | anchors.fill: parent 19 | } 20 | 21 | Image { 22 | id: sceneImageBackground 23 | anchors.fill: parent 24 | sourceSize.width: parent.width 25 | sourceSize.height: parent.height 26 | fillMode: Image.PreserveAspectCrop 27 | smooth: true; 28 | } 29 | 30 | states: [ 31 | State { 32 | name: "imageBackground" 33 | when: sceneBackgroundType === "image" 34 | PropertyChanges { 35 | target: sceneColorBackground 36 | visible: false 37 | } 38 | PropertyChanges { 39 | target: sceneImageBackground 40 | visible: true 41 | } 42 | }, 43 | State { 44 | name: "colorBackground" 45 | when: sceneBackgroundType !== "image" 46 | PropertyChanges { 47 | target: sceneColorBackground 48 | visible: true 49 | } 50 | PropertyChanges { 51 | target: sceneImageBackground 52 | visible: false 53 | } 54 | } 55 | ] 56 | } 57 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/Background.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Boudhayan Gupta 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | FocusScope { 10 | id: sceneBackground 11 | 12 | property var sceneBackgroundType 13 | property alias sceneBackgroundColor: sceneColorBackground.color 14 | property alias sceneBackgroundImage: sceneImageBackground.source 15 | 16 | Rectangle { 17 | id: sceneColorBackground 18 | anchors.fill: parent 19 | } 20 | 21 | Image { 22 | id: sceneImageBackground 23 | anchors.fill: parent 24 | sourceSize.width: parent.width 25 | sourceSize.height: parent.height 26 | fillMode: Image.PreserveAspectCrop 27 | smooth: true; 28 | } 29 | 30 | states: [ 31 | State { 32 | name: "imageBackground" 33 | when: sceneBackgroundType === "image" 34 | PropertyChanges { 35 | target: sceneColorBackground 36 | visible: false 37 | } 38 | PropertyChanges { 39 | target: sceneImageBackground 40 | visible: true 41 | } 42 | }, 43 | State { 44 | name: "colorBackground" 45 | when: sceneBackgroundType !== "image" 46 | PropertyChanges { 47 | target: sceneColorBackground 48 | visible: true 49 | } 50 | PropertyChanges { 51 | target: sceneImageBackground 52 | visible: false 53 | } 54 | } 55 | ] 56 | } 57 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/Background.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Boudhayan Gupta 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | FocusScope { 10 | id: sceneBackground 11 | 12 | property var sceneBackgroundType 13 | property alias sceneBackgroundColor: sceneColorBackground.color 14 | property alias sceneBackgroundImage: sceneImageBackground.source 15 | 16 | Rectangle { 17 | id: sceneColorBackground 18 | anchors.fill: parent 19 | } 20 | 21 | Image { 22 | id: sceneImageBackground 23 | anchors.fill: parent 24 | sourceSize.width: parent.width 25 | sourceSize.height: parent.height 26 | fillMode: Image.PreserveAspectCrop 27 | smooth: true; 28 | } 29 | 30 | states: [ 31 | State { 32 | name: "imageBackground" 33 | when: sceneBackgroundType === "image" 34 | PropertyChanges { 35 | target: sceneColorBackground 36 | visible: false 37 | } 38 | PropertyChanges { 39 | target: sceneImageBackground 40 | visible: true 41 | } 42 | }, 43 | State { 44 | name: "colorBackground" 45 | when: sceneBackgroundType !== "image" 46 | PropertyChanges { 47 | target: sceneColorBackground 48 | visible: true 49 | } 50 | PropertyChanges { 51 | target: sceneImageBackground 52 | visible: false 53 | } 54 | } 55 | ] 56 | } 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Logo WhiteSur KDE Theme 2 | ====== 3 | 4 | WhiteSur kde is a MacOS big sur like theme for KDE Plasma desktop. 5 | 6 | In this repository you'll find: 7 | 8 | - Aurorae Theme 9 | - Kvantum Theme 10 | - Wallpaper Theme 11 | - Plasma Color Scheme 12 | - Plasma Desktop Theme 13 | - Plasma Global Theme 14 | 15 | ## Installation 16 | 17 | ```sh 18 | ./install.sh 19 | ``` 20 | 21 | install sharp aurorae windows manager theme: 22 | 23 | ```sh 24 | ./install.sh --sharp 25 | ``` 26 | 27 | install opaque theme version: 28 | 29 | ```sh 30 | ./install.sh --opaque 31 | ``` 32 | 33 | ## Recommendations 34 | 35 | - For better looking please use this pack with [Kvantum engine](https://github.com/tsujan/Kvantum/blob/master/Kvantum/INSTALL.md#distributions). 36 | 37 | Run `kvantummanager` to choose and apply **WhiteSur** (or any other WhiteSur) theme. 38 | 39 | - Install [WhiteSur icon theme](https://github.com/vinceliuice/WhiteSur-icon-theme) for a more consistent and beautiful experience. 40 | 41 | - Install [WhiteSur cursors theme](https://github.com/vinceliuice/WhiteSur-cursors) for a more consistent and beautiful experience. 42 | 43 | ## Donate 44 | 45 | If you like my project, you can donate at: 46 | 47 | PayPal donate button 48 | 49 | ## License 50 | 51 | GNU GPL v3 52 | 53 | ## preview 54 | 55 | ![light](preview.png) 56 | ![dark](preview-dark.png) 57 | 58 | 59 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/kmail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/SessionButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.core 2.0 as PlasmaCore 11 | import org.kde.plasma.components 3.0 as PlasmaComponents 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: -1 17 | 18 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "") 19 | visible: menu.count > 1 20 | 21 | Component.onCompleted: { 22 | currentIndex = sessionModel.lastIndex 23 | } 24 | checkable: true 25 | checked: menu.opened 26 | onToggled: { 27 | if (checked) { 28 | menu.popup(root, 0, 0) 29 | } else { 30 | menu.dismiss() 31 | } 32 | } 33 | 34 | signal sessionChanged() 35 | 36 | PlasmaComponents.Menu { 37 | PlasmaCore.ColorScope.colorGroup: PlasmaCore.Theme.NormalColorGroup 38 | PlasmaCore.ColorScope.inherit: false 39 | 40 | id: menu 41 | Instantiator { 42 | id: instantiator 43 | model: sessionModel 44 | onObjectAdded: menu.insertItem(index, object) 45 | onObjectRemoved: menu.removeItem(object) 46 | delegate: PlasmaComponents.MenuItem { 47 | text: model.name 48 | onTriggered: { 49 | root.currentIndex = model.index 50 | sessionChanged() 51 | } 52 | } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/SessionButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.components 3.0 as PlasmaComponents 11 | import org.kde.kirigami 2.20 as Kirigami 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: -1 17 | 18 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "") 19 | visible: menu.count > 1 20 | 21 | Component.onCompleted: { 22 | currentIndex = sessionModel.lastIndex 23 | } 24 | checkable: true 25 | checked: menu.opened 26 | onToggled: { 27 | if (checked) { 28 | menu.popup(root, 0, 0) 29 | } else { 30 | menu.dismiss() 31 | } 32 | } 33 | 34 | signal sessionChanged() 35 | 36 | PlasmaComponents.Menu { 37 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 38 | Kirigami.Theme.inherit: false 39 | 40 | id: menu 41 | Instantiator { 42 | id: instantiator 43 | model: sessionModel 44 | onObjectAdded: (index, object) => menu.insertItem(index, object) 45 | onObjectRemoved: (index, object) => menu.removeItem(object) 46 | delegate: PlasmaComponents.MenuItem { 47 | text: model.name 48 | onTriggered: { 49 | root.currentIndex = model.index 50 | sessionChanged() 51 | } 52 | } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/SessionButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.components 3.0 as PlasmaComponents 11 | import org.kde.kirigami 2.20 as Kirigami 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: -1 17 | 18 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Desktop Session: %1", instantiator.objectAt(currentIndex).text || "") 19 | visible: menu.count > 1 20 | 21 | Component.onCompleted: { 22 | currentIndex = sessionModel.lastIndex 23 | } 24 | checkable: true 25 | checked: menu.opened 26 | onToggled: { 27 | if (checked) { 28 | menu.popup(root, 0, 0) 29 | } else { 30 | menu.dismiss() 31 | } 32 | } 33 | 34 | signal sessionChanged() 35 | 36 | PlasmaComponents.Menu { 37 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 38 | Kirigami.Theme.inherit: false 39 | 40 | id: menu 41 | Instantiator { 42 | id: instantiator 43 | model: sessionModel 44 | onObjectAdded: (index, object) => menu.insertItem(index, object) 45 | onObjectRemoved: (index, object) => menu.removeItem(object) 46 | delegate: PlasmaComponents.MenuItem { 47 | text: model.name 48 | onTriggered: { 49 | root.currentIndex = model.index 50 | sessionChanged() 51 | } 52 | } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/notifications.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/akregator.svg: -------------------------------------------------------------------------------- 1 | 2 | 11 | 13 | 14 | 16 | image/svg+xml 17 | 19 | 20 | 21 | 22 | 23 | 25 | 28 | 29 | 31 | 35 | 40 | 41 | 43 | 48 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/components/animation/RejectPasswordPathAnimation.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2022 ivan (@ratijas) tkachenko 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | import QtQml 2.15 9 | 10 | import org.kde.plasma.core 2.0 as PlasmaCore 11 | 12 | PathAnimation { 13 | id: root 14 | 15 | /** The magnitude/distance/offset of the animation, in the usual device-independent pixels. */ 16 | property real swing: 15 17 | 18 | /** 19 | * In which direction the target starts moving first. 20 | * Must be either Qt.LeftToRight or Qt.RightToLeft. 21 | * 22 | * By default it is opposite to the application's layout direction, to 23 | * make an animation feel more "disturbing". 24 | */ 25 | property int initialDirection: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.LeftToRight : Qt.RightToLeft 26 | 27 | alwaysRunToEnd: true 28 | 29 | // This animation's speed does not depend on user preferences, except when 30 | // we honor the "reduced animations" special case. 31 | // Animators with a duration of 0 do not fire reliably, which is why duration is at least 1. 32 | // see Bug 357532 and QTBUG-39766 33 | duration: PlasmaCore.Units.longDuration <= 1 ? 1 : 600 34 | easing.type: Easing.OutCubic 35 | 36 | path: Path { 37 | PathPolyline { 38 | path: { 39 | const directionFactor = root.initialDirection === Qt.RightToLeft ? -1 : 1; 40 | const extreme = root.swing * directionFactor; 41 | const here = Qt.point(extreme, 0); 42 | const there = Qt.point(-extreme, 0); 43 | return [ 44 | Qt.point(0, 0), 45 | here, there, 46 | here, there, 47 | here, there, 48 | Qt.point(0, 0), 49 | ]; 50 | } 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/layouts/org.kde.plasma.desktop-layout.js: -------------------------------------------------------------------------------- 1 | var panel = new Panel 2 | var panelScreen = panel.screen 3 | 4 | // No need to set panel.location as ShellCorona::addPanel will automatically pick one available edge 5 | 6 | // For an Icons-Only Task Manager on the bottom, *3 is too much, *2 is too little 7 | // Round down to next highest even number since the Panel size widget only displays 8 | // even numbers 9 | panel.height = 2 * Math.floor(gridUnit * 2.5 / 2) 10 | panel.location = "top" 11 | 12 | // Restrict horizontal panel to a maximum size of a 21:9 monitor 13 | const maximumAspectRatio = 21/9; 14 | if (panel.formFactor === "horizontal") { 15 | const geo = screenGeometry(panelScreen); 16 | const maximumWidth = Math.ceil(geo.height * maximumAspectRatio); 17 | 18 | if (geo.width > maximumWidth) { 19 | panel.alignment = "center"; 20 | panel.minimumLength = maximumWidth; 21 | panel.maximumLength = maximumWidth; 22 | } 23 | } 24 | 25 | var kickoff = panel.addWidget("org.kde.plasma.kickoff") 26 | kickoff.currentConfigGroup = ["Shortcuts"] 27 | kickoff.writeConfig("global", "Alt+F1") 28 | 29 | var bpanel = new Panel 30 | bpanel.location = "bottom" 31 | bpanel.lengthMode = "fit" 32 | bpanel.hiding = "dodgewindows" 33 | bpanel.height = 64 34 | 35 | let taskBar = bpanel.addWidget("org.kde.plasma.icontasks") 36 | taskBar.currentConfigGroup = ["General"] 37 | taskBar.writeConfig("launchers", [ 38 | "preferred://filemanager", 39 | "preferred://browser", 40 | "applications:org.kde.konsole.desktop", 41 | "applications:systemsettings.desktop", 42 | ]) 43 | panel.addWidget("org.kde.plasma.appmenu") 44 | panel.addWidget("org.kde.plasma.panelspacer") 45 | panel.addWidget("org.kde.plasma.marginsseparator") 46 | panel.addWidget("org.kde.plasma.systemtray") 47 | panel.addWidget("org.kde.plasma.marginsseparator") 48 | panel.addWidget("org.kde.plasma.digitalclock") 49 | panel.addWidget("org.kde.plasma.showdesktop") 50 | 51 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/layouts/org.kde.plasma.desktop-layout.js: -------------------------------------------------------------------------------- 1 | var panel = new Panel 2 | var panelScreen = panel.screen 3 | 4 | // No need to set panel.location as ShellCorona::addPanel will automatically pick one available edge 5 | 6 | // For an Icons-Only Task Manager on the bottom, *3 is too much, *2 is too little 7 | // Round down to next highest even number since the Panel size widget only displays 8 | // even numbers 9 | panel.height = 2 * Math.floor(gridUnit * 2.5 / 2) 10 | panel.location = "top" 11 | 12 | // Restrict horizontal panel to a maximum size of a 21:9 monitor 13 | const maximumAspectRatio = 21/9; 14 | if (panel.formFactor === "horizontal") { 15 | const geo = screenGeometry(panelScreen); 16 | const maximumWidth = Math.ceil(geo.height * maximumAspectRatio); 17 | 18 | if (geo.width > maximumWidth) { 19 | panel.alignment = "center"; 20 | panel.minimumLength = maximumWidth; 21 | panel.maximumLength = maximumWidth; 22 | } 23 | } 24 | 25 | var kickoff = panel.addWidget("org.kde.plasma.kickoff") 26 | kickoff.currentConfigGroup = ["Shortcuts"] 27 | kickoff.writeConfig("global", "Alt+F1") 28 | 29 | var bpanel = new Panel 30 | bpanel.location = "bottom" 31 | bpanel.lengthMode = "fit" 32 | bpanel.hiding = "dodgewindows" 33 | bpanel.height = 64 34 | 35 | let taskBar = bpanel.addWidget("org.kde.plasma.icontasks") 36 | taskBar.currentConfigGroup = ["General"] 37 | taskBar.writeConfig("launchers", [ 38 | "preferred://filemanager", 39 | "preferred://browser", 40 | "applications:org.kde.konsole.desktop", 41 | "applications:systemsettings.desktop", 42 | ]) 43 | panel.addWidget("org.kde.plasma.appmenu") 44 | panel.addWidget("org.kde.plasma.panelspacer") 45 | panel.addWidget("org.kde.plasma.marginsseparator") 46 | panel.addWidget("org.kde.plasma.systemtray") 47 | panel.addWidget("org.kde.plasma.marginsseparator") 48 | panel.addWidget("org.kde.plasma.digitalclock") 49 | panel.addWidget("org.kde.plasma.showdesktop") 50 | 51 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/layouts/org.kde.plasma.desktop-layout.js: -------------------------------------------------------------------------------- 1 | var panel = new Panel 2 | var panelScreen = panel.screen 3 | 4 | // No need to set panel.location as ShellCorona::addPanel will automatically pick one available edge 5 | 6 | // For an Icons-Only Task Manager on the bottom, *3 is too much, *2 is too little 7 | // Round down to next highest even number since the Panel size widget only displays 8 | // even numbers 9 | panel.height = 2 * Math.floor(gridUnit * 2.5 / 2) 10 | panel.location = "top" 11 | 12 | // Restrict horizontal panel to a maximum size of a 21:9 monitor 13 | const maximumAspectRatio = 21/9; 14 | if (panel.formFactor === "horizontal") { 15 | const geo = screenGeometry(panelScreen); 16 | const maximumWidth = Math.ceil(geo.height * maximumAspectRatio); 17 | 18 | if (geo.width > maximumWidth) { 19 | panel.alignment = "center"; 20 | panel.minimumLength = maximumWidth; 21 | panel.maximumLength = maximumWidth; 22 | } 23 | } 24 | 25 | var kickoff = panel.addWidget("org.kde.plasma.kickoff") 26 | kickoff.currentConfigGroup = ["Shortcuts"] 27 | kickoff.writeConfig("global", "Alt+F1") 28 | 29 | var bpanel = new Panel 30 | bpanel.location = "bottom" 31 | bpanel.lengthMode = "fit" 32 | bpanel.hiding = "dodgewindows" 33 | bpanel.height = 64 34 | 35 | let taskBar = bpanel.addWidget("org.kde.plasma.icontasks") 36 | taskBar.currentConfigGroup = ["General"] 37 | taskBar.writeConfig("launchers", [ 38 | "preferred://filemanager", 39 | "preferred://browser", 40 | "applications:org.kde.konsole.desktop", 41 | "applications:systemsettings.desktop", 42 | ]) 43 | panel.addWidget("org.kde.plasma.appmenu") 44 | panel.addWidget("org.kde.plasma.panelspacer") 45 | panel.addWidget("org.kde.plasma.marginsseparator") 46 | panel.addWidget("org.kde.plasma.systemtray") 47 | panel.addWidget("org.kde.plasma.marginsseparator") 48 | panel.addWidget("org.kde.plasma.digitalclock") 49 | panel.addWidget("org.kde.plasma.showdesktop") 50 | 51 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/Splash.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.5 2 | 3 | 4 | Image { 5 | id: root 6 | source: "images/background.png" 7 | 8 | property int stage 9 | 10 | onStageChanged: { 11 | if (stage == 1) { 12 | introAnimation.running = true 13 | } 14 | } 15 | 16 | 17 | Item { 18 | id: content 19 | anchors.fill: parent 20 | opacity: 0 21 | TextMetrics { 22 | id: units 23 | text: "M" 24 | property int gridUnit: boundingRect.height 25 | property int largeSpacing: units.gridUnit 26 | property int smallSpacing: Math.max(2, gridUnit/4) 27 | } 28 | 29 | Image { 30 | id: logo 31 | //match SDDM/lockscreen avatar positioning 32 | property real size: units.gridUnit * 8 33 | 34 | anchors.centerIn: parent 35 | 36 | source: "images/logo.svg" 37 | 38 | // sourceSize.width: 503 39 | // sourceSize.height: 99 40 | } 41 | 42 | Image { 43 | id: busyIndicator 44 | //in the middle of the remaining space 45 | y: parent.height - (parent.height - logo.y) / 2 - height/2 46 | anchors.horizontalCenter: parent.horizontalCenter 47 | source: "images/loading-00.svg" 48 | sourceSize.height: units.gridUnit * 1.5 49 | sourceSize.width: units.gridUnit * 1.5 50 | RotationAnimator on rotation { 51 | id: rotationAnimator 52 | from: 0 53 | to: 12 54 | duration: 1012 55 | loops: Animation.Infinite 56 | } 57 | } 58 | 59 | } 60 | 61 | OpacityAnimator { 62 | id: introAnimation 63 | running: false 64 | target: content 65 | from: 0 66 | to: 1 67 | duration: 1000 68 | easing.type: Easing.InOutQuad 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/Splash.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.5 2 | 3 | 4 | Image { 5 | id: root 6 | source: "images/background.png" 7 | 8 | property int stage 9 | 10 | onStageChanged: { 11 | if (stage == 1) { 12 | introAnimation.running = true 13 | } 14 | } 15 | 16 | 17 | Item { 18 | id: content 19 | anchors.fill: parent 20 | opacity: 0 21 | TextMetrics { 22 | id: units 23 | text: "M" 24 | property int gridUnit: boundingRect.height 25 | property int largeSpacing: units.gridUnit 26 | property int smallSpacing: Math.max(2, gridUnit/4) 27 | } 28 | 29 | Image { 30 | id: logo 31 | //match SDDM/lockscreen avatar positioning 32 | property real size: units.gridUnit * 8 33 | 34 | anchors.centerIn: parent 35 | 36 | source: "images/logo.svg" 37 | 38 | // sourceSize.width: 503 39 | // sourceSize.height: 99 40 | } 41 | 42 | Image { 43 | id: busyIndicator 44 | //in the middle of the remaining space 45 | y: parent.height - (parent.height - logo.y) / 2 - height/2 46 | anchors.horizontalCenter: parent.horizontalCenter 47 | source: "images/loading-00.svg" 48 | sourceSize.height: units.gridUnit * 1.5 49 | sourceSize.width: units.gridUnit * 1.5 50 | RotationAnimator on rotation { 51 | id: rotationAnimator 52 | from: 0 53 | to: 360 54 | duration: 800 55 | loops: Animation.Infinite 56 | } 57 | } 58 | 59 | } 60 | 61 | OpacityAnimator { 62 | id: introAnimation 63 | running: false 64 | target: content 65 | from: 0 66 | to: 1 67 | duration: 1000 68 | easing.type: Easing.InOutQuad 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/Splash.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.5 2 | 3 | 4 | Image { 5 | id: root 6 | source: "images/background.png" 7 | 8 | property int stage 9 | 10 | onStageChanged: { 11 | if (stage == 1) { 12 | introAnimation.running = true 13 | } 14 | } 15 | 16 | 17 | Item { 18 | id: content 19 | anchors.fill: parent 20 | opacity: 0 21 | TextMetrics { 22 | id: units 23 | text: "M" 24 | property int gridUnit: boundingRect.height 25 | property int largeSpacing: units.gridUnit 26 | property int smallSpacing: Math.max(2, gridUnit/4) 27 | } 28 | 29 | Image { 30 | id: logo 31 | //match SDDM/lockscreen avatar positioning 32 | property real size: units.gridUnit * 8 33 | 34 | anchors.centerIn: parent 35 | 36 | source: "images/logo.svg" 37 | 38 | // sourceSize.width: 503 39 | // sourceSize.height: 99 40 | } 41 | 42 | Image { 43 | id: busyIndicator 44 | //in the middle of the remaining space 45 | y: parent.height - (parent.height - logo.y) / 2 - height/2 46 | anchors.horizontalCenter: parent.horizontalCenter 47 | source: "images/loading-00.svg" 48 | sourceSize.height: units.gridUnit * 1.5 49 | sourceSize.width: units.gridUnit * 1.5 50 | RotationAnimator on rotation { 51 | id: rotationAnimator 52 | from: 0 53 | to: 360 54 | duration: 800 55 | loops: Animation.Infinite 56 | } 57 | } 58 | 59 | } 60 | 61 | OpacityAnimator { 62 | id: introAnimation 63 | running: false 64 | target: content 65 | from: 0 66 | to: 1 67 | duration: 1000 68 | easing.type: Easing.InOutQuad 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 11 | 13 | 14 | 16 | image/svg+xml 17 | 19 | 20 | 21 | 22 | 23 | 25 | 30 | 31 | 35 | 39 | 42 | 43 | 47 | 51 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/KeyboardButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.core 2.0 as PlasmaCore 11 | import org.kde.plasma.components 3.0 as PlasmaComponents 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: keyboard.currentLayout 17 | onCurrentIndexChanged: keyboard.currentLayout = currentIndex 18 | 19 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keyboard Layout: %1", keyboard.layouts[currentIndex].longName) 20 | visible: keyboard.layouts.length > 1 21 | 22 | checkable: true 23 | checked: menu.opened 24 | onToggled: { 25 | if (checked) { 26 | menu.popup(root, 0, 0) 27 | } else { 28 | menu.dismiss() 29 | } 30 | } 31 | 32 | signal keyboardLayoutChanged() 33 | 34 | PlasmaComponents.Menu { 35 | id: menu 36 | PlasmaCore.ColorScope.colorGroup: PlasmaCore.Theme.NormalColorGroup 37 | PlasmaCore.ColorScope.inherit: false 38 | 39 | onAboutToShow: { 40 | if (instantiator.model === null) { 41 | let layouts = keyboard.layouts; 42 | layouts.sort((a, b) => a.longName.localeCompare(b.longName)); 43 | instantiator.model = layouts; 44 | } 45 | } 46 | 47 | Instantiator { 48 | id: instantiator 49 | model: null 50 | onObjectAdded: menu.insertItem(index, object) 51 | onObjectRemoved: menu.removeItem(object) 52 | delegate: PlasmaComponents.MenuItem { 53 | text: modelData.longName 54 | onTriggered: { 55 | keyboard.currentLayout = keyboard.layouts.indexOf(modelData) 56 | root.keyboardLayoutChanged() 57 | } 58 | } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.0/KeyboardButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.components 3.0 as PlasmaComponents 11 | import org.kde.kirigami 2.20 as Kirigami 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: keyboard.currentLayout 17 | onCurrentIndexChanged: keyboard.currentLayout = currentIndex 18 | 19 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keyboard Layout: %1", keyboard.layouts[currentIndex].longName) 20 | visible: keyboard.layouts.length > 1 21 | 22 | checkable: true 23 | checked: menu.opened 24 | onToggled: { 25 | if (checked) { 26 | menu.popup(root, 0, 0) 27 | } else { 28 | menu.dismiss() 29 | } 30 | } 31 | 32 | signal keyboardLayoutChanged() 33 | 34 | PlasmaComponents.Menu { 35 | id: menu 36 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 37 | Kirigami.Theme.inherit: false 38 | 39 | onAboutToShow: { 40 | if (instantiator.model === null) { 41 | let layouts = keyboard.layouts; 42 | layouts.sort((a, b) => a.longName.localeCompare(b.longName)); 43 | instantiator.model = layouts; 44 | } 45 | } 46 | 47 | Instantiator { 48 | id: instantiator 49 | model: null 50 | onObjectAdded: (index, object) => menu.insertItem(index, object) 51 | onObjectRemoved: (index, object) => menu.removeItem(object) 52 | delegate: PlasmaComponents.MenuItem { 53 | text: modelData.longName 54 | onTriggered: { 55 | keyboard.currentLayout = keyboard.layouts.indexOf(modelData) 56 | root.keyboardLayoutChanged() 57 | } 58 | } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /sddm/WhiteSur-6.2/KeyboardButton.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 David Edmundson 3 | SPDX-FileCopyrightText: 2022 Aleix Pol Gonzalez 4 | 5 | SPDX-License-Identifier: LGPL-2.0-or-later 6 | */ 7 | 8 | import QtQuick 2.15 9 | 10 | import org.kde.plasma.components 3.0 as PlasmaComponents 11 | import org.kde.kirigami 2.20 as Kirigami 12 | 13 | PlasmaComponents.ToolButton { 14 | id: root 15 | 16 | property int currentIndex: keyboard.currentLayout 17 | onCurrentIndexChanged: keyboard.currentLayout = currentIndex 18 | 19 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keyboard Layout: %1", keyboard.layouts[currentIndex].longName) 20 | visible: keyboard.layouts.length > 1 21 | 22 | checkable: true 23 | checked: menu.opened 24 | onToggled: { 25 | if (checked) { 26 | menu.popup(root, 0, 0) 27 | } else { 28 | menu.dismiss() 29 | } 30 | } 31 | 32 | signal keyboardLayoutChanged() 33 | 34 | PlasmaComponents.Menu { 35 | id: menu 36 | Kirigami.Theme.colorSet: Kirigami.Theme.Window 37 | Kirigami.Theme.inherit: false 38 | 39 | onAboutToShow: { 40 | if (instantiator.model === null) { 41 | let layouts = keyboard.layouts; 42 | layouts.sort((a, b) => a.longName.localeCompare(b.longName)); 43 | instantiator.model = layouts; 44 | } 45 | } 46 | 47 | Instantiator { 48 | id: instantiator 49 | model: null 50 | onObjectAdded: (index, object) => menu.insertItem(index, object) 51 | onObjectRemoved: (index, object) => menu.removeItem(object) 52 | delegate: PlasmaComponents.MenuItem { 53 | text: modelData.longName 54 | onTriggered: { 55 | keyboard.currentLayout = keyboard.layouts.indexOf(modelData) 56 | root.keyboardLayoutChanged() 57 | } 58 | } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /plasma/desktoptheme/icons-old/apport.svg: -------------------------------------------------------------------------------- 1 | 2 | 11 | 13 | 14 | 16 | image/svg+xml 17 | 19 | 20 | 21 | 22 | 23 | 25 | 28 | 29 | 31 | 35 | 40 | 41 | 43 | 47 | 51 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /sddm/WhiteSur-5.0/components/Battery.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2016 Kai Uwe Broulik 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | import QtQuick.Layouts 1.15 9 | 10 | import org.kde.plasma.core 2.0 as PlasmaCore 11 | import org.kde.plasma.components 3.0 as PlasmaComponents3 12 | import org.kde.plasma.workspace.components 2.0 as PW 13 | 14 | RowLayout { 15 | id: root 16 | 17 | property int fontSize: PlasmaCore.Theme.defaultFont.pointSize 18 | 19 | function getOrDefault(source /*object?*/, prop /*string*/, fallback /*T*/) /*-> T*/ { 20 | return (source !== null && source !== undefined && source.hasOwnProperty(prop)) 21 | ? source[prop] : fallback; 22 | } 23 | 24 | readonly property var acAdapter: pmSource.data["AC Adapter"] 25 | readonly property var battery: pmSource.data["Battery"] 26 | 27 | readonly property bool pluggedIn: getOrDefault(acAdapter, "Plugged in", false) 28 | readonly property bool hasBattery: getOrDefault(battery, "Has Battery", false) 29 | readonly property int percent: getOrDefault(battery, "Percent", 0) 30 | 31 | spacing: PlasmaCore.Units.smallSpacing 32 | visible: getOrDefault(battery, "Has Cumulative", false) 33 | 34 | PlasmaCore.DataSource { 35 | id: pmSource 36 | engine: "powermanagement" 37 | connectedSources: ["Battery", "AC Adapter"] 38 | } 39 | 40 | PW.BatteryIcon { 41 | pluggedIn: root.pluggedIn 42 | hasBattery: root.hasBattery 43 | percent: root.percent 44 | 45 | Layout.preferredHeight: Math.max(PlasmaCore.Units.iconSizes.medium, batteryLabel.implicitHeight) 46 | Layout.preferredWidth: Layout.preferredHeight 47 | Layout.alignment: Qt.AlignVCenter 48 | } 49 | 50 | PlasmaComponents3.Label { 51 | id: batteryLabel 52 | font.pointSize: root.fontSize 53 | text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "%1%", root.percent) 54 | Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Battery at %1%", root.percent) 55 | Layout.alignment: Qt.AlignVCenter 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-00.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-00.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/images/loading-00.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur/contents/splash/images/loading-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-alt/contents/splash/images/loading-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/images/loading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plasma/look-and-feel/com.github.vinceliuice.WhiteSur-dark/contents/splash/images/loading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | --------------------------------------------------------------------------------