├── .gitignore ├── Configs ├── Home │ ├── .config │ │ ├── Kvantum │ │ │ └── kvantum.kvconfig │ │ ├── Trolltech.conf │ │ ├── apdatifier │ │ │ ├── config.conf │ │ │ ├── news.json │ │ │ ├── rules.json │ │ │ └── updates.json │ │ ├── autostart │ │ │ └── Yakuake.desktop │ │ ├── baloofileinformationrc │ │ ├── baloofilerc │ │ ├── bat │ │ │ └── config.conf │ │ ├── dconf │ │ │ └── user │ │ ├── dolphinrc │ │ ├── fastfetch │ │ │ ├── ArchP.png │ │ │ └── config.jsonc │ │ ├── gtk-3.0 │ │ │ └── settings.ini │ │ ├── gtk-4.0 │ │ │ └── settings.ini │ │ ├── kactivitymanagerdrc │ │ ├── kcminputrc │ │ ├── kded5rc │ │ ├── kdeglobals │ │ ├── kdialogrc │ │ ├── kfontinstuirc │ │ ├── kiorc │ │ ├── kmenueditrc │ │ ├── konsolerc │ │ ├── krunnerrc │ │ ├── kscreenlockerrc │ │ ├── kservicemenurc │ │ ├── ksmserverrc │ │ ├── ksplashrc │ │ ├── kwalletrc │ │ ├── kwinrc │ │ ├── ohmyposh │ │ │ └── distrous-xero-linux.omp.json │ │ ├── plasma-org.kde.plasma.desktop-appletsrc │ │ ├── plasmarc │ │ ├── plasmashellrc │ │ ├── powerdevilrc │ │ ├── powermanagementprofilesrc │ │ ├── systemsettingsrc │ │ ├── xsettingsd │ │ │ └── xsettingsd.conf │ │ └── yakuakerc │ └── .local │ │ └── share │ │ ├── baloo │ │ └── index-lock │ │ ├── dolphin │ │ ├── dolphinstaterc │ │ └── view_properties │ │ │ └── global │ │ │ └── .directory │ │ ├── icons │ │ └── hicolor │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ ├── C06E_winhlp32.0.png │ │ │ │ ├── D15F_hh.0.png │ │ │ │ └── D23E_msiexec.0.png │ │ │ ├── 256x256 │ │ │ └── apps │ │ │ │ ├── C06E_winhlp32.0.png │ │ │ │ ├── D15F_hh.0.png │ │ │ │ └── D23E_msiexec.0.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ ├── C06E_winhlp32.0.png │ │ │ │ ├── D15F_hh.0.png │ │ │ │ └── D23E_msiexec.0.png │ │ │ └── 48x48 │ │ │ ├── apps │ │ │ ├── C06E_winhlp32.0.png │ │ │ ├── D15F_hh.0.png │ │ │ └── D23E_msiexec.0.png │ │ │ └── mimetypes │ │ │ ├── freedownloadmanager_torrent.png │ │ │ └── gnome-mime-freedownloadmanager_torrent.png │ │ ├── kio │ │ └── servicemenus │ │ │ ├── compare-using-meld.desktop │ │ │ ├── convert-pdf.desktop │ │ │ ├── open-as-root.desktop │ │ │ ├── s2fLocalization.sh │ │ │ ├── selected2folder.desktop │ │ │ └── selected2folder.sh │ │ ├── knewstuff3 │ │ ├── icons.knsregistry │ │ ├── konsole.knsregistry │ │ ├── kwineffect.knsregistry │ │ ├── kwinscripts.knsregistry │ │ ├── kwinswitcher.knsregistry │ │ ├── plasmoids.knsregistry │ │ └── yakuake.knsregistry │ │ ├── konsole │ │ ├── AplumaDark.colorscheme │ │ └── XeroLinux.profile │ │ ├── kwin │ │ ├── effects │ │ │ ├── kwin4_effect_maximize_xrender │ │ │ │ ├── contents │ │ │ │ │ └── code │ │ │ │ │ │ ├── maximize-xrender.js │ │ │ │ │ │ └── maximize-xrender.js.old │ │ │ │ └── metadata.desktop │ │ │ └── kwin4_effect_rubberband_maximize │ │ │ │ ├── contents │ │ │ │ └── code │ │ │ │ │ └── main.js │ │ │ │ └── metadata.desktop │ │ ├── scripts │ │ │ ├── autocomposer │ │ │ │ ├── contents │ │ │ │ │ └── code │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.desktop │ │ │ ├── force-decorations-gtk3 │ │ │ │ ├── contents │ │ │ │ │ └── code │ │ │ │ │ │ └── main.js │ │ │ │ └── metadata.desktop │ │ │ ├── forceblur │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── config.ui │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.desktop │ │ │ ├── krohnkite │ │ │ │ ├── contents │ │ │ │ │ ├── code │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── script.js │ │ │ │ │ ├── config │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── config.ui │ │ │ │ │ │ ├── main.qml │ │ │ │ │ │ ├── popup.qml │ │ │ │ │ │ └── shortcuts.qml │ │ │ │ └── metadata.json │ │ │ ├── movewindowtocenter │ │ │ │ ├── COPYING │ │ │ │ ├── contents │ │ │ │ │ └── code │ │ │ │ │ │ └── main.js │ │ │ │ └── metadata.desktop │ │ │ └── screenSnapping5 │ │ │ │ ├── contents │ │ │ │ ├── code │ │ │ │ │ └── main.js │ │ │ │ ├── config │ │ │ │ │ └── main.xml │ │ │ │ └── ui │ │ │ │ │ └── config.ui │ │ │ │ └── metadata.desktop │ │ └── tabbox │ │ │ └── preview_reel │ │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ │ └── metadata.desktop │ │ ├── kxmlgui5 │ │ └── dolphin │ │ │ └── dolphinui.rc │ │ ├── plasma │ │ ├── plasmoids │ │ │ ├── Plasma.Control.Hub │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── icons │ │ │ │ │ │ └── rain-probability.svg │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ ├── zh-cn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ │ └── zh-tw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── plasma_applet_Plasma.Control.Hub.mo │ │ │ │ │ └── ui │ │ │ │ │ │ ├── Battery.qml │ │ │ │ │ │ ├── Brightness.qml │ │ │ │ │ │ ├── FullRepresentation.qml │ │ │ │ │ │ ├── GeneralConfig.qml │ │ │ │ │ │ ├── SourceMultimedia.qml │ │ │ │ │ │ ├── SvgColorMonochrome.qml │ │ │ │ │ │ ├── UserInfo.qml │ │ │ │ │ │ ├── VolumeSlider.qml │ │ │ │ │ │ ├── WeatherInfo.qml │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ConnectionItem.qml │ │ │ │ │ │ ├── Network.qml │ │ │ │ │ │ ├── SectionNetworks.qml │ │ │ │ │ │ └── WeatherData.qml │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── corchMusic.svg │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ └── rain-probability.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── GetCity.js │ │ │ │ │ │ ├── GetInfoApi.js │ │ │ │ │ │ ├── GetModelWeather.js │ │ │ │ │ │ ├── funcs.js │ │ │ │ │ │ ├── geoCoordinates.js │ │ │ │ │ │ ├── traductor.js │ │ │ │ │ │ └── uiTranslator.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Card.qml │ │ │ │ │ │ ├── HelperCard.qml │ │ │ │ │ │ └── LongButton.qml │ │ │ │ │ │ └── main.qml │ │ │ │ ├── metadata.desktop │ │ │ │ ├── metadata.json │ │ │ │ └── translate │ │ │ │ │ ├── pt.po │ │ │ │ │ ├── ReadMe.md │ │ │ │ │ ├── ar.po │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── de.po │ │ │ │ │ ├── es.po │ │ │ │ │ ├── fr.po │ │ │ │ │ ├── hi.po │ │ │ │ │ ├── ja.po │ │ │ │ │ ├── ko.po │ │ │ │ │ ├── merge.sh │ │ │ │ │ ├── nl.po │ │ │ │ │ ├── plasmoidlocaletest.sh │ │ │ │ │ ├── template.pot │ │ │ │ │ ├── zh-cn.po │ │ │ │ │ └── zh-tw.po │ │ │ ├── com.github.exequtic.apdatifier │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ │ └── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── plasma_applet_com.github.exequtic.apdatifier.mo │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── sh │ │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ ├── mirrorlist │ │ │ │ │ │ │ ├── terminal │ │ │ │ │ │ │ ├── upgrade │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── vars │ │ │ │ │ │ │ ├── widgets │ │ │ │ │ │ │ └── widgets-id │ │ │ │ │ │ └── tools.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── art │ │ │ │ │ │ │ ├── apdatifier-donate.png │ │ │ │ │ │ │ └── apdatifier-githubstar.png │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ ├── apdatifier-flatpak.svg │ │ │ │ │ │ │ ├── apdatifier-package.svg │ │ │ │ │ │ │ ├── apdatifier-packages.svg │ │ │ │ │ │ │ ├── apdatifier-plasmoid.svg │ │ │ │ │ │ │ ├── status_blank.svg │ │ │ │ │ │ │ ├── status_error.svg │ │ │ │ │ │ │ ├── status_flatpak.svg │ │ │ │ │ │ │ ├── status_news.svg │ │ │ │ │ │ │ ├── status_package.svg │ │ │ │ │ │ │ ├── status_pending.svg │ │ │ │ │ │ │ ├── status_updated.svg │ │ │ │ │ │ │ ├── status_widgets.svg │ │ │ │ │ │ │ ├── tab_compact.svg │ │ │ │ │ │ │ ├── tab_extended.svg │ │ │ │ │ │ │ ├── toolbar_check.svg │ │ │ │ │ │ │ ├── toolbar_management.svg │ │ │ │ │ │ │ ├── toolbar_pause.svg │ │ │ │ │ │ │ ├── toolbar_search.svg │ │ │ │ │ │ │ ├── toolbar_sort.svg │ │ │ │ │ │ │ ├── toolbar_start.svg │ │ │ │ │ │ │ ├── toolbar_stop.svg │ │ │ │ │ │ │ └── toolbar_upgrade.svg │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Badge.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── Notification.qml │ │ │ │ │ │ ├── Placeholder.qml │ │ │ │ │ │ └── Shell.qml │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── Appearance.qml │ │ │ │ │ │ ├── General.qml │ │ │ │ │ │ ├── Rules.qml │ │ │ │ │ │ ├── Support.qml │ │ │ │ │ │ └── Upgrade.qml │ │ │ │ │ │ ├── main.qml │ │ │ │ │ │ ├── representation │ │ │ │ │ │ ├── Expanded.qml │ │ │ │ │ │ └── Panel.qml │ │ │ │ │ │ └── scrollview │ │ │ │ │ │ ├── Compact.qml │ │ │ │ │ │ ├── Extended.qml │ │ │ │ │ │ └── News.qml │ │ │ │ ├── metadata.json │ │ │ │ └── translate │ │ │ │ │ ├── ReadMe.md │ │ │ │ │ ├── build │ │ │ │ │ ├── merge │ │ │ │ │ ├── po │ │ │ │ │ ├── de.po │ │ │ │ │ ├── es.po │ │ │ │ │ ├── fr.po │ │ │ │ │ ├── ko.po │ │ │ │ │ ├── nl.po │ │ │ │ │ ├── pl.po │ │ │ │ │ ├── pt_BR.po │ │ │ │ │ └── ru.po │ │ │ │ │ └── template.pot │ │ │ ├── com.github.k-donn.plasmoid-wunderground │ │ │ │ ├── contents │ │ │ │ │ ├── code │ │ │ │ │ │ ├── pws-api.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 0.svg │ │ │ │ │ │ ├── 1.svg │ │ │ │ │ │ ├── 10.svg │ │ │ │ │ │ ├── 11.svg │ │ │ │ │ │ ├── 12.svg │ │ │ │ │ │ ├── 13.svg │ │ │ │ │ │ ├── 14.svg │ │ │ │ │ │ ├── 15.svg │ │ │ │ │ │ ├── 16.svg │ │ │ │ │ │ ├── 17.svg │ │ │ │ │ │ ├── 18.svg │ │ │ │ │ │ ├── 19.svg │ │ │ │ │ │ ├── 2.svg │ │ │ │ │ │ ├── 20.svg │ │ │ │ │ │ ├── 21.svg │ │ │ │ │ │ ├── 22.svg │ │ │ │ │ │ ├── 23.svg │ │ │ │ │ │ ├── 24.svg │ │ │ │ │ │ ├── 25.svg │ │ │ │ │ │ ├── 26.svg │ │ │ │ │ │ ├── 27.svg │ │ │ │ │ │ ├── 28.svg │ │ │ │ │ │ ├── 29.svg │ │ │ │ │ │ ├── 3.svg │ │ │ │ │ │ ├── 30.svg │ │ │ │ │ │ ├── 31.svg │ │ │ │ │ │ ├── 32.svg │ │ │ │ │ │ ├── 33.svg │ │ │ │ │ │ ├── 34.svg │ │ │ │ │ │ ├── 35.svg │ │ │ │ │ │ ├── 36.svg │ │ │ │ │ │ ├── 37.svg │ │ │ │ │ │ ├── 38.svg │ │ │ │ │ │ ├── 39.svg │ │ │ │ │ │ ├── 4.svg │ │ │ │ │ │ ├── 40.svg │ │ │ │ │ │ ├── 41.svg │ │ │ │ │ │ ├── 42.svg │ │ │ │ │ │ ├── 43.svg │ │ │ │ │ │ ├── 44.svg │ │ │ │ │ │ ├── 45.svg │ │ │ │ │ │ ├── 46.svg │ │ │ │ │ │ ├── 47.svg │ │ │ │ │ │ ├── 5.svg │ │ │ │ │ │ ├── 6.svg │ │ │ │ │ │ ├── 7.svg │ │ │ │ │ │ ├── 8.svg │ │ │ │ │ │ ├── 9.svg │ │ │ │ │ │ ├── cloud-filled-lightning.svg │ │ │ │ │ │ ├── cloud-filled-snow-ball.svg │ │ │ │ │ │ ├── cloud-filled-wind-rain.svg │ │ │ │ │ │ ├── cloud-filled-wind.svg │ │ │ │ │ │ ├── cloud-filled.svg │ │ │ │ │ │ ├── cloud-fllled-rain.svg │ │ │ │ │ │ ├── cloud-fog.svg │ │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ │ ├── cloud-wind-rain.svg │ │ │ │ │ │ ├── cloud-wind.svg │ │ │ │ │ │ ├── clouds-filled-lightning.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── deg-celcius.svg │ │ │ │ │ │ ├── deg-fahrenheit.svg │ │ │ │ │ │ ├── eclipse.svg │ │ │ │ │ │ ├── moon-fog.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── na.svg │ │ │ │ │ │ ├── not-applicable.svg │ │ │ │ │ │ ├── snow.svg │ │ │ │ │ │ ├── sun-cloudy-moon.svg │ │ │ │ │ │ ├── sun-filled-cloudy.svg │ │ │ │ │ │ ├── sun-filled.svg │ │ │ │ │ │ ├── sun-fog.svg │ │ │ │ │ │ ├── sun-windy.svg │ │ │ │ │ │ ├── sunshine.svg │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ ├── wi-barometer.svg │ │ │ │ │ │ ├── wi-horizon-alt.svg │ │ │ │ │ │ ├── wi-humidity.svg │ │ │ │ │ │ ├── wi-umbrella.svg │ │ │ │ │ │ └── wind-barbs │ │ │ │ │ │ │ ├── 0-2.svg │ │ │ │ │ │ │ ├── 13-17.svg │ │ │ │ │ │ │ ├── 18-22.svg │ │ │ │ │ │ │ ├── 23-27.svg │ │ │ │ │ │ │ ├── 28-32.svg │ │ │ │ │ │ │ ├── 3-7.svg │ │ │ │ │ │ │ └── 8-12.svg │ │ │ │ │ └── ui │ │ │ │ │ │ ├── AirAndSolarItem.qml │ │ │ │ │ │ ├── AlertsItem.qml │ │ │ │ │ │ ├── BottomPanel.qml │ │ │ │ │ │ ├── ChartMetricsSelectionDelegate.qml │ │ │ │ │ │ ├── CompactRepresentation.qml │ │ │ │ │ │ ├── DayChartItem.qml │ │ │ │ │ │ ├── DetailsItem.qml │ │ │ │ │ │ ├── ForecastItem.qml │ │ │ │ │ │ ├── FullRepresentation.qml │ │ │ │ │ │ ├── IconAndTextItem.qml │ │ │ │ │ │ ├── MoreInfoItem.qml │ │ │ │ │ │ ├── SwitchPanel.qml │ │ │ │ │ │ ├── TopPanel.qml │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ConfigAppearance.qml │ │ │ │ │ │ ├── ConfigDebug.qml │ │ │ │ │ │ ├── ConfigStation.qml │ │ │ │ │ │ └── ConfigUnits.qml │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── BackgroundToggle.qml │ │ │ │ │ │ ├── ConfigBtn.qml │ │ │ │ │ │ ├── ConfigComboBox.qml │ │ │ │ │ │ ├── StationPicker.qml │ │ │ │ │ │ └── StationPickerDialog.qml │ │ │ │ │ │ └── main.qml │ │ │ │ ├── metadata.json │ │ │ │ └── translate │ │ │ │ │ ├── ReadMe.md │ │ │ │ │ ├── de_DE.po │ │ │ │ │ ├── es_ES.po │ │ │ │ │ ├── fr_FR.po │ │ │ │ │ ├── it_IT.po │ │ │ │ │ ├── ja_JP.po │ │ │ │ │ ├── nl_NL.po │ │ │ │ │ ├── pl_PL.po │ │ │ │ │ ├── pt_BR.po │ │ │ │ │ ├── ru_RU.po │ │ │ │ │ ├── sr_Latn.po │ │ │ │ │ ├── template.pot │ │ │ │ │ ├── zh_CN.po │ │ │ │ │ └── zh_TW.po │ │ │ ├── com.github.prayag2.aestheticclock │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── Hasteristico.ttf │ │ │ │ │ └── ui │ │ │ │ │ │ ├── BooleanField.qml │ │ │ │ │ │ ├── ColorField.qml │ │ │ │ │ │ ├── FontLabel.qml │ │ │ │ │ │ ├── NumberField.qml │ │ │ │ │ │ ├── SysMonLabel.qml │ │ │ │ │ │ ├── Title.qml │ │ │ │ │ │ ├── configAppearance.qml │ │ │ │ │ │ ├── configPreferences.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.json │ │ │ ├── com.himdek.kde.plasma.overview │ │ │ │ ├── LICENSE.md │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── configGeneral.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.json │ │ │ ├── luisbocanegra.panel.colorizer │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── matrix_logo.svg │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_luisbocanegra.panel.colorizer.mo │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── plasma_applet_luisbocanegra.panel.colorizer.mo │ │ │ │ │ │ └── zh │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── plasma_applet_luisbocanegra.panel.colorizer.mo │ │ │ │ │ └── ui │ │ │ │ │ │ ├── CompactRepresentation.qml │ │ │ │ │ │ ├── ConfiguringIndicator.qml │ │ │ │ │ │ ├── CustomBorder.qml │ │ │ │ │ │ ├── DBusFallback.qml │ │ │ │ │ │ ├── DBusMethodCall.qml │ │ │ │ │ │ ├── DBusPrimary.qml │ │ │ │ │ │ ├── DBusServiceModel.qml │ │ │ │ │ │ ├── DBusSignalMonitor.qml │ │ │ │ │ │ ├── Enums.qml │ │ │ │ │ │ ├── GradientRoundedRectangle.qml │ │ │ │ │ │ ├── ImageRoundedRectangle.qml │ │ │ │ │ │ ├── RectangularGrid.qml │ │ │ │ │ │ ├── RunCommand.qml │ │ │ │ │ │ ├── TasksModel.qml │ │ │ │ │ │ ├── code │ │ │ │ │ │ ├── enum.js │ │ │ │ │ │ ├── globals.js │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── version.js │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CategoryDisabled.qml │ │ │ │ │ │ ├── ColorButton.qml │ │ │ │ │ │ ├── ColorPickerGradientList.qml │ │ │ │ │ │ ├── ColorPickerList.qml │ │ │ │ │ │ ├── FormBorder.qml │ │ │ │ │ │ ├── FormColors.qml │ │ │ │ │ │ ├── FormPadding.qml │ │ │ │ │ │ ├── FormShadow.qml │ │ │ │ │ │ ├── FormShape.qml │ │ │ │ │ │ ├── FormWidgetSettings.qml │ │ │ │ │ │ ├── Header.qml │ │ │ │ │ │ ├── PlasmoidIcon.qml │ │ │ │ │ │ ├── Scheme.qml │ │ │ │ │ │ ├── SettingImportExport.qml │ │ │ │ │ │ ├── SpinBoxDecimal.qml │ │ │ │ │ │ ├── ValueMouseControl.qml │ │ │ │ │ │ ├── WidgetCardCheck.qml │ │ │ │ │ │ ├── WidgetCardConfig.qml │ │ │ │ │ │ ├── WidgetCardOverride.qml │ │ │ │ │ │ └── WidgetCardUnifiedBg.qml │ │ │ │ │ │ ├── configAppearance.qml │ │ │ │ │ │ ├── configForeground.qml │ │ │ │ │ │ ├── configGeneral.qml │ │ │ │ │ │ ├── configGlobalWidgetOverrides.qml │ │ │ │ │ │ ├── configPresetAutoload.qml │ │ │ │ │ │ ├── configPresetWidgetOverrides.qml │ │ │ │ │ │ ├── configPresets.qml │ │ │ │ │ │ ├── configStockPanelSettings.qml │ │ │ │ │ │ ├── configUnifiedBackground.qml │ │ │ │ │ │ ├── main.qml │ │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── Black Color Lines │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Black Gray Lines │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Black │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Bliss Light │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Bliss │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Blur Widgets 2 │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Blur Widgets │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Carbon │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── ChromeOS │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Dock │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Eclipse │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Fake Floating │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Fusion 2 │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Fusion 3 │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Fusion │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Neon Lights │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── OG │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Orbit │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Outline Accent │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Outline Colors │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Outline │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Pulse │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Rounded Widgets Floating │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Rounded Widgets │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Rubik │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Skeuomorphic 2 │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Skeuomorphic white │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Skittles │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Sky │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Sleek │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Solid │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Translucent │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ ├── Transparent │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ └── White │ │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ │ └── settings.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ ├── gdbus_get_signal.sh │ │ │ │ │ │ ├── list_presets.sh │ │ │ │ │ │ └── service.py │ │ │ │ ├── metadata.json │ │ │ │ └── translate │ │ │ │ │ ├── ReadMe.md │ │ │ │ │ ├── de.po │ │ │ │ │ ├── nl.po │ │ │ │ │ ├── template.pot │ │ │ │ │ └── zh.po │ │ │ ├── org.kde.latte.separator │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── ConfigAppearance.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.json │ │ │ ├── org.kde.netspeedWidget │ │ │ │ ├── contents │ │ │ │ │ ├── code │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── CompactRepresentation.qml │ │ │ │ │ │ ├── Launcher.qml │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── AppMenuDialog.qml │ │ │ │ │ │ ├── AppPicker.qml │ │ │ │ │ │ ├── ColorPicker.qml │ │ │ │ │ │ ├── ConfigAdvanced.qml │ │ │ │ │ │ └── ConfigGeneral.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.json │ │ │ ├── org.kde.plasma.shutdownorswitch │ │ │ │ ├── contents │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.qml │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── ui │ │ │ │ │ │ ├── ActionListDelegate.qml │ │ │ │ │ │ ├── ListDelegate.qml │ │ │ │ │ │ ├── UserListDelegate.qml │ │ │ │ │ │ ├── configGeneral.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── metadata.json │ │ │ └── zayron.simple.separator │ │ │ │ ├── contents │ │ │ │ ├── config │ │ │ │ │ ├── config.qml │ │ │ │ │ └── main.xml │ │ │ │ ├── locale │ │ │ │ │ └── es │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── plasma_applet_zayron.simple.separator.mo │ │ │ │ └── ui │ │ │ │ │ ├── GeneralConfig.qml │ │ │ │ │ └── main.qml │ │ │ │ ├── metadata.desktop │ │ │ │ ├── metadata.json │ │ │ │ └── translate │ │ │ │ ├── build.sh │ │ │ │ ├── es.po │ │ │ │ ├── merge.sh │ │ │ │ ├── plasmoidlocaletest.sh │ │ │ │ └── template.pot │ │ └── wallpapers │ │ │ ├── at.lehklu.plasma.vallpaper6 │ │ │ ├── contents │ │ │ │ ├── config │ │ │ │ │ └── main.xml │ │ │ │ ├── js │ │ │ │ │ └── v.js │ │ │ │ └── ui │ │ │ │ │ ├── config.qml │ │ │ │ │ └── main.qml │ │ │ └── metadata.json │ │ │ └── luisbocanegra.smart.video.wallpaper.reborn │ │ │ ├── contents │ │ │ ├── config │ │ │ │ └── main.xml │ │ │ ├── icons │ │ │ │ └── matrix_logo.svg │ │ │ ├── locale │ │ │ │ ├── el_GR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo │ │ │ │ └── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo │ │ │ └── ui │ │ │ │ ├── DBusFallback.qml │ │ │ │ ├── DBusMethodCall.qml │ │ │ │ ├── DBusPrimary.qml │ │ │ │ ├── DBusSignalMonitor.qml │ │ │ │ ├── EffectsModel.qml │ │ │ │ ├── FadePlayer.qml │ │ │ │ ├── ReadMe.qml │ │ │ │ ├── RunCommand.qml │ │ │ │ ├── ScreenModel.qml │ │ │ │ ├── TasksModel.qml │ │ │ │ ├── VideoPlayer.qml │ │ │ │ ├── code │ │ │ │ ├── enum.js │ │ │ │ └── utils.js │ │ │ │ ├── components │ │ │ │ ├── CheckableValueListView.qml │ │ │ │ └── Header.qml │ │ │ │ ├── config.qml │ │ │ │ ├── main.qml │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ └── tools │ │ │ │ └── gdbus_get_signal.sh │ │ │ ├── metadata.json │ │ │ └── translate │ │ │ ├── ReadMe.md │ │ │ ├── el_GR.po │ │ │ ├── es.po │ │ │ ├── nl.po │ │ │ ├── pt_BR.po │ │ │ ├── ru.po │ │ │ └── template.pot │ │ └── yakuake │ │ └── kns_skins │ │ └── arc-dark │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── icon.png │ │ ├── tabs.skin │ │ ├── tabs │ │ ├── back_tr.png │ │ ├── left_tr.png │ │ ├── minus_down_tr.png │ │ ├── minus_over_tr.png │ │ ├── minus_up_tr.png │ │ ├── plus_down_tr.png │ │ ├── plus_over_tr.png │ │ ├── plus_up_tr.png │ │ ├── right_tr.png │ │ └── separator_tr.png │ │ ├── title.skin │ │ └── title │ │ ├── back_tr.png │ │ ├── config_down.png │ │ ├── config_over.png │ │ ├── config_up.png │ │ ├── focus_down.png │ │ ├── focus_over.png │ │ ├── focus_up.png │ │ ├── left_tr.png │ │ ├── quit_down.png │ │ ├── quit_over.png │ │ ├── quit_up.png │ │ └── right_tr.png └── System │ ├── etc │ └── sddm.conf.d │ │ └── kde_settings.conf │ └── usr │ └── share │ ├── Kvantum │ ├── Layan │ │ ├── Layan.kvconfig │ │ ├── Layan.svg │ │ ├── LayanDark.kvconfig │ │ └── LayanDark.svg │ ├── LayanSolid │ │ ├── LayanSolid.kvconfig │ │ ├── LayanSolid.svg │ │ ├── LayanSolidDark.kvconfig │ │ └── LayanSolidDark.svg │ └── kvantum.kvconfig │ ├── logos │ └── xero.png │ ├── pixmaps │ └── xerolinux.png │ └── sddm │ └── themes │ └── XeroDark │ ├── Background.qml │ ├── KeyboardButton.qml │ ├── Login.qml │ ├── Main.qml │ ├── Messages.sh │ ├── SessionButton.qml │ ├── bg.png │ ├── default-logo.svg │ ├── faces │ └── .face.icon │ ├── metadata.desktop │ ├── preview.png │ ├── theme.conf │ └── theme.conf.user ├── Grub.sh ├── LICENSE ├── README.md ├── XeroLayan ├── background.png ├── icons │ ├── 4MLinux.png │ ├── AlpineLinux.png │ ├── Manjaro.i686.png │ ├── Manjaro.x86_64.png │ ├── SystemRescueCD.png │ ├── android.png │ ├── anonymous.png │ ├── antergos.png │ ├── arch.png │ ├── archlinux.png │ ├── arcolinux.png │ ├── artix.png │ ├── cancel.png │ ├── centos.png │ ├── chakra.png │ ├── debian.png │ ├── deepin.png │ ├── devuan.png │ ├── driver.png │ ├── edit.png │ ├── efi.png │ ├── elementary.png │ ├── endeavouros.png │ ├── fedora.png │ ├── find.efi.png │ ├── find.none.png │ ├── freebsd.png │ ├── garuda.png │ ├── gentoo.png │ ├── gnu-linux.png │ ├── haiku.png │ ├── help.png │ ├── kali.png │ ├── kaos.png │ ├── kbd.png │ ├── korora.png │ ├── kubuntu.png │ ├── lang.png │ ├── lfs.png │ ├── linux.png │ ├── linuxmint.png │ ├── lubuntu.png │ ├── macosx.png │ ├── mageia.png │ ├── manjaro.png │ ├── mate.png │ ├── memtest.png │ ├── mx-linux.png │ ├── neon.png │ ├── opensuse.png │ ├── parrot.png │ ├── pop-os.png │ ├── pop.png │ ├── recovery.png │ ├── regolith.png │ ├── restart.png │ ├── rocky.png │ ├── shutdown.png │ ├── siduction.png │ ├── slackware.png │ ├── solus.png │ ├── steamos.png │ ├── type.png │ ├── tz.png │ ├── ubuntu.png │ ├── unknown.png │ ├── unset.png │ ├── ventoy.png │ ├── void.png │ ├── windows.png │ ├── windows11.png │ ├── xero.png │ ├── xerolinux.png │ ├── xubuntu.png │ └── zorin.png ├── select_c.png ├── select_e.png ├── select_w.png ├── terminal_box_c.png ├── terminal_box_e.png ├── terminal_box_n.png ├── terminal_box_ne.png ├── terminal_box_nw.png ├── terminal_box_s.png ├── terminal_box_se.png ├── terminal_box_sw.png ├── terminal_box_w.png ├── terminus-12.pf2 ├── terminus-14.pf2 ├── terminus-16.pf2 ├── terminus-18.pf2 ├── theme.txt ├── ubuntu_regular_17.pf2 └── ubuntu_regular_20.pf2 └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | gitclean.sh 5 | push.sh 6 | *.log 7 | node_modules/ 8 | .deploy*/ 9 | -------------------------------------------------------------------------------- /Configs/Home/.config/Kvantum/kvantum.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=LayanDark 3 | -------------------------------------------------------------------------------- /Configs/Home/.config/Trolltech.conf: -------------------------------------------------------------------------------- 1 | [qt] 2 | GUIEffects=none 3 | KDE\contrast=0 4 | KWinPalette\activeBackground=#36383e 5 | KWinPalette\activeBlend=#3b3e44 6 | KWinPalette\activeForeground=#dddddd 7 | KWinPalette\activeTitleBtnBg=#31313a 8 | KWinPalette\frame=#31313a 9 | KWinPalette\inactiveBackground=#3e4147 10 | KWinPalette\inactiveBlend=#43474d 11 | KWinPalette\inactiveForeground=#787878 12 | KWinPalette\inactiveFrame=#33333b 13 | KWinPalette\inactiveTitleBtnBg=#33333b 14 | Palette\active=#eaeaea, #44454b, #3d3d48, #373741, #222228, #2c2c35, #eaeaea, #ffffff, #eaeaea, #31313a, #31313a, #19191d, #5657f5, #ffffff, #4285f4, #e040fb, #36383e, #000000, #212329, #dddddd, #999999, #5657f5 15 | Palette\disabled=#727278, #44454b, #3d3d48, #373741, #222228, #2c2c35, #727278, #ffffff, #7e7f83, #31313a, #31313a, #19191d, #31313a, #727278, #374e7b, #6e367e, #36383e, #000000, #212329, #dddddd, #55555b, #31313a 16 | Palette\inactive=#e6e6e6, #45464c, #3e3e49, #393842, #232329, #2e2e36, #e6e6e6, #ffffff, #e6e6e6, #33333b, #33333b, #19191e, #32338f, #e5e5ed, #5085e2, #cd58e5, #37393f, #000000, #212329, #dddddd, #979799, #32338f 17 | font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1" 18 | -------------------------------------------------------------------------------- /Configs/Home/.config/apdatifier/news.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "title": "Arch Linux: Recent news updates", 4 | "article": "Valkey to replace Redis in the [extra] Repository", 5 | "date": "17.04.2025 | 16:16", 6 | "link": "https://archlinux.org/news/valkey-to-replace-redis-in-the-extra-repository/", 7 | "removed": true 8 | } 9 | ] 10 | -------------------------------------------------------------------------------- /Configs/Home/.config/apdatifier/rules.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Configs/Home/.config/apdatifier/updates.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "NM": "ab-download-manager-git", 4 | "DE": "A Download Manager that speeds up your downloads", 5 | "LN": "https://abdownloadmanager.com", 6 | "PR": "ab-download-manager", 7 | "DP": "libxrender libxtst harfbuzz fontconfig", 8 | "CF": "ab-download-manager abdownloadmanager-bin", 9 | "IS": "133.59 MiB", 10 | "DT": "Sat 31 May 2025 11:31:23 AM EEST", 11 | "RN": "Explicitly installed", 12 | "VO": "1.6.3.r7.gee16c46-1", 13 | "VN": "latest commit", 14 | "RE": "devel", 15 | "IN": "/usr/share/icons/hicolor/512x512/apps/abdownloadmanager.png" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /Configs/Home/.config/autostart/Yakuake.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Categories=Qt;KDE;System;TerminalEmulator; 3 | Comment[en_US]=A drop-down terminal emulator based on KDE Konsole technology. 4 | Comment=A drop-down terminal emulator based on KDE Konsole technology. 5 | Exec=yakuake 6 | GenericName[en_US]=Drop-down Terminal 7 | GenericName=Drop-down Terminal 8 | Icon=terminal-app-symbolic 9 | MimeType= 10 | Name[en_US]=Yakuake 11 | Name=Yakuake 12 | Path= 13 | StartupNotify=false 14 | Terminal=false 15 | TerminalOptions= 16 | Type=Application 17 | X-DBUS-ServiceName=org.kde.yakuake 18 | X-DBUS-StartupType=unique 19 | X-KDE-StartupNotify=false 20 | X-KDE-SubstituteUID=false 21 | X-KDE-Username= 22 | -------------------------------------------------------------------------------- /Configs/Home/.config/baloofileinformationrc: -------------------------------------------------------------------------------- 1 | [Misc] 2 | version=13 3 | 4 | [Show] 5 | channels=false 6 | comment=false 7 | contentCreated=false 8 | contentSize=false 9 | created=false 10 | depends=false 11 | embeddedRating=false 12 | fileName=false 13 | fileSize=false 14 | height=false 15 | kfileitem#group=false 16 | kfileitem#owner=false 17 | kfileitem#permissions=false 18 | lastModified=false 19 | lyrics=false 20 | mimeType=false 21 | photoGpsLatitude=false 22 | photoGpsLongitude=false 23 | photoMeteringMode=false 24 | photoPixelXDimension=false 25 | photoPixelYDimension=false 26 | photoSaturation=false 27 | photoSharpness=false 28 | photoWhiteBalance=false 29 | replayGainAlbumGain=false 30 | replayGainAlbumPeak=false 31 | replayGainTrackGain=false 32 | replayGainTrackPeak=false 33 | url=false 34 | width=false 35 | -------------------------------------------------------------------------------- /Configs/Home/.config/baloofilerc: -------------------------------------------------------------------------------- 1 | [Basic Settings] 2 | Indexing-Enabled=false 3 | 4 | [General] 5 | dbVersion=2 6 | exclude filters=*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,core-dumps,lost+found 7 | exclude filters version=8 8 | -------------------------------------------------------------------------------- /Configs/Home/.config/bat/config.conf: -------------------------------------------------------------------------------- 1 | # This is `bat`s configuration file. Each line either contains a comment or 2 | # a command-line option that you want to pass to `bat` by default. You can 3 | # run `bat --help` to get a list of all possible configuration options. 4 | 5 | # Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes` 6 | # for a list of all available themes 7 | --theme="Dracula" 8 | 9 | # Enable this to use italic text on the terminal. This is not supported on all 10 | # terminal emulators (like tmux, by default): 11 | --italic-text=always 12 | 13 | --style="numbers,header,grid,snip" 14 | 15 | # Uncomment the following line to disable automatic paging: 16 | --paging=always 17 | 18 | # Uncomment the following line if you are using less version >= 551 and want to 19 | # enable mouse scrolling support in `bat` when running inside tmux. This might 20 | # disable text selection, unless you press shift. 21 | #--pager="--RAW-CONTROL-CHARS --quit-if-one-screen --mouse" 22 | 23 | # Syntax mappings: map a certain filename pattern to a language. 24 | # Example 1: use the C++ syntax for .ino files 25 | # Example 2: Use ".gitignore"-style highlighting for ".ignore" files 26 | --map-syntax "*.ino:C++" 27 | #--map-syntax ".ignore:Git Ignore" 28 | -------------------------------------------------------------------------------- /Configs/Home/.config/dconf/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.config/dconf/user -------------------------------------------------------------------------------- /Configs/Home/.config/fastfetch/ArchP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.config/fastfetch/ArchP.png -------------------------------------------------------------------------------- /Configs/Home/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-application-prefer-dark-theme=true 3 | gtk-button-images=true 4 | gtk-cursor-theme-name=breeze_cursors 5 | gtk-cursor-theme-size=24 6 | gtk-decoration-layout=icon:minimize,maximize,close 7 | gtk-enable-animations=true 8 | gtk-font-name=Noto Sans, 10 9 | gtk-icon-theme-name=Tela-circle-purple-dark 10 | gtk-menu-images=true 11 | gtk-modules=colorreload-gtk-module:window-decorations-gtk-module:appmenu-gtk-module 12 | gtk-primary-button-warps-slider=true 13 | gtk-shell-shows-menubar=1 14 | gtk-sound-theme-name=ocean 15 | gtk-theme-name=Layan-Dark 16 | gtk-toolbar-style=3 17 | gtk-xft-dpi=98304 18 | -------------------------------------------------------------------------------- /Configs/Home/.config/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-application-prefer-dark-theme=true 3 | gtk-cursor-theme-name=breeze_cursors 4 | gtk-cursor-theme-size=24 5 | gtk-decoration-layout=icon:minimize,maximize,close 6 | gtk-enable-animations=true 7 | gtk-font-name=Noto Sans, 10 8 | gtk-icon-theme-name=Tela-circle-purple-dark 9 | gtk-primary-button-warps-slider=true 10 | gtk-sound-theme-name=ocean 11 | gtk-theme-name=Layan-Dark 12 | gtk-xft-dpi=98304 13 | -------------------------------------------------------------------------------- /Configs/Home/.config/kactivitymanagerdrc: -------------------------------------------------------------------------------- 1 | [activities] 2 | cd915191-804f-4d50-8fc3-f8e5c0279f54=Default 3 | 4 | [main] 5 | currentActivity=cd915191-804f-4d50-8fc3-f8e5c0279f54 6 | -------------------------------------------------------------------------------- /Configs/Home/.config/kcminputrc: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0,kcminputrc_repeat.upd:kcminputrc_migrate_key_repeat 3 | 4 | [Keyboard] 5 | KeyRepeat=repeat 6 | RepeatDelay=300 7 | RepeatRate=35 8 | 9 | [Mouse] 10 | X11LibInputXAccelProfileFlat=true 11 | cursorTheme=breeze_cursors 12 | -------------------------------------------------------------------------------- /Configs/Home/.config/kdialogrc: -------------------------------------------------------------------------------- 1 | [KFileDialog Settings] 2 | Recent Files[$e]=file:/usr/share/defaultbg/XeroLinux.png 3 | Recent URLs[$e]=file:$HOME/Pictures/ 4 | detailViewIconSize=16 5 | -------------------------------------------------------------------------------- /Configs/Home/.config/kfontinstuirc: -------------------------------------------------------------------------------- 1 | [Main Settings] 2 | GroupSplitterSizes=172,559 3 | PreviewSplitterSizes=424,134 4 | -------------------------------------------------------------------------------- /Configs/Home/.config/kiorc: -------------------------------------------------------------------------------- 1 | [Confirmations] 2 | ConfirmDelete=true 3 | ConfirmEmptyTrash=true 4 | ConfirmTrash=true 5 | 6 | [Executable scripts] 7 | behaviourOnLaunch=alwaysAsk 8 | -------------------------------------------------------------------------------- /Configs/Home/.config/kmenueditrc: -------------------------------------------------------------------------------- 1 | [General] 2 | SplitterSizes=477,721 3 | 4 | [MainWindow] 5 | MenuBar=Disabled 6 | State=AAAA/wAAAAD9AAAAAAAABLwAAAG6AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgEAAAAA/////wAAAAAAAAAA 7 | ToolBarsMovable=Disabled 8 | -------------------------------------------------------------------------------- /Configs/Home/.config/konsolerc: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | DefaultProfile=XeroLinux.profile 3 | 4 | [General] 5 | ConfigVersion=1 6 | 7 | [KonsoleWindow] 8 | AllowMenuAccelerators=true 9 | RememberWindowSize=false 10 | ShowMenuBarByDefault=false 11 | 12 | [MainWindow] 13 | MenuBar=Disabled 14 | StatusBar=Disabled 15 | ToolBarsMovable=Disabled 16 | 17 | [TabBar] 18 | CloseTabOnMiddleMouseButton=true 19 | NewTabButton=true 20 | 21 | [UiSettings] 22 | ColorScheme= 23 | -------------------------------------------------------------------------------- /Configs/Home/.config/krunnerrc: -------------------------------------------------------------------------------- 1 | [General] 2 | FreeFloating=true 3 | 4 | [PlasmaRunnerManager] 5 | migrated=true 6 | 7 | [Plugins] 8 | Kill RunnerEnabled=true 9 | PowerDevilEnabled=true 10 | appstreamEnabled=true 11 | baloosearchEnabled=true 12 | bookmarksEnabled=true 13 | browserhistoryEnabled=true 14 | browsertabsEnabled=true 15 | calculatorEnabled=true 16 | desktopsessionsEnabled=true 17 | kwinEnabled=true 18 | locationsEnabled=true 19 | org.kde.activities2Enabled=true 20 | org.kde.windowedwidgetsEnabled=true 21 | placesEnabled=true 22 | plasma-desktopEnabled=true 23 | recentdocumentsEnabled=true 24 | servicesEnabled=true 25 | shellEnabled=true 26 | webshortcutsEnabled=true 27 | windowsEnabled=true 28 | -------------------------------------------------------------------------------- /Configs/Home/.config/kscreenlockerrc: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=kscreenlocker.upd:0.1-autolock 3 | 4 | [Daemon] 5 | Autolock=false 6 | LockOnResume=false 7 | 8 | [Greeter][Wallpaper][org.kde.image][General] 9 | Image=/usr/share/wallpapers/Xero-Plasma21.jpg 10 | PreviewImage=/usr/share/wallpapers/Xero-Plasma21.jpg 11 | -------------------------------------------------------------------------------- /Configs/Home/.config/kservicemenurc: -------------------------------------------------------------------------------- 1 | [Show] 2 | compressfileitemaction=true 3 | decrypt-view=true 4 | encrypt=true 5 | extractfileitemaction=true 6 | installFont=true 7 | kactivitymanagerd_fileitem_linking_plugin=true 8 | kdeconnectfileitemaction=true 9 | mountisoaction=true 10 | plasmavaultfileitemaction=true 11 | runInKonsole=true 12 | sharefileitemaction=true 13 | slideshowfileitemaction=true 14 | tagsfileitemaction=true 15 | -------------------------------------------------------------------------------- /Configs/Home/.config/ksmserverrc: -------------------------------------------------------------------------------- 1 | [General] 2 | loginMode=emptySession 3 | offerShutdown=false 4 | -------------------------------------------------------------------------------- /Configs/Home/.config/ksplashrc: -------------------------------------------------------------------------------- 1 | [KSplash] 2 | Engine=none 3 | Theme=None 4 | -------------------------------------------------------------------------------- /Configs/Home/.config/kwalletrc: -------------------------------------------------------------------------------- 1 | [Wallet] 2 | Close When Idle=false 3 | Close on Screensaver=false 4 | Enabled=false 5 | Idle Timeout=45 6 | Launch Manager=false 7 | Leave Manager Open=false 8 | Leave Open=false 9 | Prompt on Open=false 10 | Use One Wallet=false 11 | -------------------------------------------------------------------------------- /Configs/Home/.config/plasmarc: -------------------------------------------------------------------------------- 1 | [Theme] 2 | name=Layan 3 | 4 | [Wallpapers] 5 | usersWallpapers=/usr/share/wallpapers/Xero-Plasma21.png,/usr/share/wallpapers/Xero-Plasma21.png 6 | -------------------------------------------------------------------------------- /Configs/Home/.config/powerdevilrc: -------------------------------------------------------------------------------- 1 | [AC][Display] 2 | DimDisplayWhenIdle=false 3 | DisplayBrightness=100 4 | TurnOffDisplayWhenIdle=false 5 | UseProfileSpecificDisplayBrightness=true 6 | 7 | [AC][SuspendAndShutdown] 8 | AutoSuspendAction=0 9 | 10 | [General] 11 | pausePlayersOnSuspend=false 12 | -------------------------------------------------------------------------------- /Configs/Home/.config/powermanagementprofilesrc: -------------------------------------------------------------------------------- 1 | [AC] 2 | icon=battery-charging 3 | 4 | [AC][BrightnessControl] 5 | value=100 6 | 7 | [AC][HandleButtonEvents] 8 | lidAction=1 9 | powerButtonAction=16 10 | powerDownAction=16 11 | 12 | [Battery] 13 | icon=battery-060 14 | 15 | [Battery][DPMSControl] 16 | idleTime=300 17 | lockBeforeTurnOff=0 18 | 19 | [Battery][DimDisplay] 20 | idleTime=120000 21 | 22 | [Battery][HandleButtonEvents] 23 | lidAction=1 24 | powerButtonAction=16 25 | powerDownAction=16 26 | 27 | [Battery][SuspendSession] 28 | idleTime=600000 29 | suspendThenHibernate=false 30 | suspendType=1 31 | 32 | [LowBattery] 33 | icon=battery-low 34 | 35 | [LowBattery][BrightnessControl] 36 | value=30 37 | 38 | [LowBattery][DPMSControl] 39 | idleTime=120 40 | lockBeforeTurnOff=0 41 | 42 | [LowBattery][DimDisplay] 43 | idleTime=60000 44 | 45 | [LowBattery][HandleButtonEvents] 46 | lidAction=1 47 | powerButtonAction=16 48 | powerDownAction=16 49 | 50 | [LowBattery][SuspendSession] 51 | idleTime=300000 52 | suspendThenHibernate=false 53 | suspendType=1 54 | 55 | [Migration] 56 | MigratedProfilesToPlasma6=powerdevilrc 57 | -------------------------------------------------------------------------------- /Configs/Home/.config/systemsettingsrc: -------------------------------------------------------------------------------- 1 | [MainWindow] 2 | MenuBar=Disabled 3 | State=AAAA/wAAAAD9AAAAAAAABbYAAAK8AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgAAAAAA/////wAAAAAAAAAA 4 | ToolBarsMovable=Disabled 5 | 6 | [Open-with settings] 7 | CompletionMode=1 8 | History=yak,pamac-tray 9 | -------------------------------------------------------------------------------- /Configs/Home/.config/xsettingsd/xsettingsd.conf: -------------------------------------------------------------------------------- 1 | Net/SoundThemeName "ocean" 2 | Gdk/UnscaledDPI 98304 3 | Gdk/WindowScalingFactor 1 4 | Net/ThemeName "Layan-Dark" 5 | Gtk/EnableAnimations 1 6 | Gtk/DecorationLayout "icon:minimize,maximize,close" 7 | Gtk/PrimaryButtonWarpsSlider 1 8 | Gtk/ToolbarStyle 3 9 | Gtk/MenuImages 1 10 | Gtk/ButtonImages 1 11 | Gtk/CursorThemeSize 24 12 | Gtk/CursorThemeName "breeze_cursors" 13 | Net/IconThemeName "Tela-circle-purple-dark" 14 | Gtk/FontName "Noto Sans, 10" 15 | 16 | -------------------------------------------------------------------------------- /Configs/Home/.config/yakuakerc: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | BackgroundColorOpacity=60 3 | HideSkinBorders=true 4 | Skin=arc-dark 5 | SkinInstalledWithKns=true 6 | Translucency=true 7 | 8 | [Desktop Entry] 9 | DefaultProfile= 10 | 11 | [Dialogs] 12 | FirstRun=false 13 | 14 | [Window] 15 | Height=36 16 | KeepOpen=false 17 | ShowTabBar=false 18 | Width=70 19 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/baloo/index-lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/baloo/index-lock -------------------------------------------------------------------------------- /Configs/Home/.local/share/dolphin/dolphinstaterc: -------------------------------------------------------------------------------- 1 | [State] 2 | RestorePositionForNextInstance=true 3 | State=AAAA/wAAAAD9AAAAAwAAAAAAAACCAAAB6/wCAAAAAvsAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawAAAAAqAAAA7AAAAAIA////+wAAABQAcABsAGEAYwBlAHMARABvAGMAawEAAAAqAAAB6wAAAFUA////AAAAAQAAALQAAAHr/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAAAAACoAAAHrAAAAAgD///8AAAADAAAC+AAAALb8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAC+AAAAAIA////AAACcgAAAesAAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA= 4 | Virtual-1=Virtual-1 5 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/dolphin/view_properties/global/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2023,5,21,23,11,6.876 3 | Version=4 4 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/16x16/apps/C06E_winhlp32.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/16x16/apps/C06E_winhlp32.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/16x16/apps/D15F_hh.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/16x16/apps/D15F_hh.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/16x16/apps/D23E_msiexec.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/16x16/apps/D23E_msiexec.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/256x256/apps/C06E_winhlp32.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/256x256/apps/C06E_winhlp32.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/256x256/apps/D15F_hh.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/256x256/apps/D15F_hh.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/256x256/apps/D23E_msiexec.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/256x256/apps/D23E_msiexec.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/32x32/apps/C06E_winhlp32.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/32x32/apps/C06E_winhlp32.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/32x32/apps/D15F_hh.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/32x32/apps/D15F_hh.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/32x32/apps/D23E_msiexec.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/32x32/apps/D23E_msiexec.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/48x48/apps/C06E_winhlp32.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/48x48/apps/C06E_winhlp32.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/48x48/apps/D15F_hh.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/48x48/apps/D15F_hh.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/48x48/apps/D23E_msiexec.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/48x48/apps/D23E_msiexec.0.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/48x48/mimetypes/freedownloadmanager_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/icons/hicolor/48x48/mimetypes/freedownloadmanager_torrent.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/icons/hicolor/48x48/mimetypes/gnome-mime-freedownloadmanager_torrent.png: -------------------------------------------------------------------------------- 1 | freedownloadmanager_torrent.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/kio/servicemenus/selected2folder.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Service 3 | X-KDE-ServiceTypes=KonqPopupMenu/Plugin 4 | #X-KDE-Submenu=KDE-Services 5 | #X-KDE-Priority=TopLevel 6 | MimeType=all/all; 7 | Actions=selected2newfolder 8 | Icon=folder-bookmark 9 | 10 | [Desktop Action selected2newfolder] 11 | Name=Create folder from selected 12 | Name[ru]=Переместить в новую папку 13 | Name[be]=Перамясцiць у новую тэчку 14 | Name[sr]=Бити премештен у нову мапу 15 | Name[uk]=Перемiстити в нову папку 16 | Name[nl]=Map aanmaken met selectie 17 | Name[de]=Ordner aus Auswahl erstellen 18 | Name[fr]=Créer un dossier de la sélection 19 | Name[it]=Crea cartella da selezionata 20 | Name[es]=Crear carpeta de seleccionado 21 | Exec=$HOME/.local/share/kio/servicemenus/selected2folder.sh %F . 22 | Icon=folder-add 23 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kio/servicemenus/selected2folder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ver 1.0 3 | . $HOME/.local/share/kio/servicemenus/s2fLocalization.sh 4 | 5 | function add_prefix_name() { 6 | NUM=0 7 | TEMP="$1" 8 | while [ -d "$TEMP" ] 9 | do 10 | NUM="$(($NUM+1))" 11 | TEMP="$1"\ "($NUM)" 12 | done 13 | printf "$TEMP" 14 | } 15 | function ask_name() { 16 | kdialog --title "$(window_title)" --inputbox "$(window_message)" "$1" --geometry 450x300 17 | } 18 | NAME="$(def_name)" 19 | NAME="$(add_prefix_name "$NAME")" 20 | NAME="$(ask_name "$NAME")" 21 | while [ -d "$NAME" ] 22 | do 23 | NAME="$(add_prefix_name "$NAME")" 24 | NAME="$(ask_name "$NAME")" 25 | done 26 | mkdir -p "$NAME" && cd "$NAME" && mv "$@" 27 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/konsole/XeroLinux.profile: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | ColorScheme=AplumaDark 3 | Font=Hack Nerd Font Mono,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1 4 | 5 | [Cursor Options] 6 | CursorShape=1 7 | 8 | [General] 9 | Command=/bin/bash 10 | Name=XeroLinux 11 | Parent=FALLBACK/ 12 | StartInCurrentSessionDir=true 13 | TerminalColumns=105 14 | TerminalRows=33 15 | 16 | [Interaction Options] 17 | AutoCopySelectedText=true 18 | 19 | [Scrolling] 20 | HistoryMode=2 21 | 22 | [Terminal Features] 23 | BlinkingCursorEnabled=true 24 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/effects/kwin4_effect_maximize_xrender/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Comment=Animation for windows going to maximize/restore from maximize, less glitches 3 | Icon=preferences-system-windows-effect-maximize 4 | Name=Maximize antiglitch 5 | Type=Service 6 | X-KDE-ParentApp= 7 | X-KDE-PluginInfo-Author=Martin Gräßlin (changed by Antonio Orefice) 8 | X-KDE-PluginInfo-Category=Appearance 9 | X-KDE-PluginInfo-Email=kokoko3k@gmail.com 10 | X-KDE-PluginInfo-License=GPL 11 | X-KDE-PluginInfo-Name=kwin4_effect_maximize_xrender 12 | X-KDE-PluginInfo-Version=1.1 13 | X-KDE-PluginInfo-Website= 14 | X-KDE-ServiceTypes=KWin/Effect 15 | X-KDE-PluginInfo-EnabledByDefault=false 16 | X-KDE-Ordering=60 17 | X-Plasma-API=javascript 18 | X-Plasma-MainScript=code/maximize-xrender.js 19 | 20 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/effects/kwin4_effect_rubberband_maximize/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Comment=Maximize/Restore window animation similar to Windows 10 3 | Icon=preferences-system-windows-effect-rubberband-maximize 4 | Name=Rubberband Maximize 5 | Type=Service 6 | X-KDE-ParentApp= 7 | X-KDE-PluginInfo-Author=Alex Nemeth 8 | X-KDE-PluginInfo-Category=Appearance 9 | X-KDE-PluginInfo-Email=alex.nemeth329@gmail.com 10 | X-KDE-PluginInfo-License=GPL 11 | X-KDE-PluginInfo-Name=kwin4_effect_rubberband_maximize 12 | X-KDE-PluginInfo-Version=1 13 | X-KDE-PluginInfo-Website= 14 | X-KDE-ServiceTypes=KWin/Effect 15 | X-KDE-PluginInfo-EnabledByDefault=true 16 | X-KDE-Ordering=60 17 | X-Plasma-API=javascript 18 | X-Plasma-MainScript=code/main.js 19 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/autocomposer/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | 3 | Name=Autocomposer 4 | X-KDE-PluginInfo-Version=4 5 | Comment=Blocks compositing on fullscreen, to improve graphical performance 6 | Icon=preferences-desktop-effects 7 | 8 | X-KDE-PluginInfo-License=GPLv3 9 | X-KDE-PluginInfo-Website=https://store.kde.org/p/1502826/ 10 | 11 | X-KDE-PluginInfo-Name=autocomposer 12 | Type=Service 13 | X-KDE-PluginInfo-Category=Kwin Script 14 | X-KDE-PluginInfo-EnabledByDefault=true 15 | 16 | X-KDE-ServiceTypes=KWin/Script 17 | X-Plasma-API=declarativescript 18 | X-Plasma-MainScript=code/main.qml 19 | X-KWin-Border-Activate=true 20 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/force-decorations-gtk3/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Force Decorations for GTK+ 3 3 | Comment=Adds KWin decorations to GTK's header bars 4 | Icon=preferences-system-windows-script-test 5 | 6 | X-Plasma-API=javascript 7 | X-Plasma-MainScript=code/main.js 8 | 9 | X-KDE-PluginInfo-Author=Jack Gandy 10 | X-KDE-PluginInfo-Email=scionicspectre@gmail.com 11 | X-KDE-PluginInfo-Name=force-decorations-gtk3 12 | X-KDE-PluginInfo-Version=0.1 13 | 14 | X-KDE-PluginInfo-Depends= 15 | X-KDE-PluginInfo-License=GPL 16 | X-KDE-ServiceTypes=KWin/Script,KCModule 17 | 18 | X-KDE-Library=kwin/effects/configs/kcm_kwin4_genericscripted 19 | X-KDE-PluginKeyword=force-decoration-gtk3 20 | X-KDE-ParentComponents=force-decoration-gtk3 21 | 22 | Type=Service 23 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/forceblur/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Eon S. Jeon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/forceblur/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | yakuake 11 | urxvt 12 | keepassxc 13 | 14 | 15 | true 16 | 17 | 18 | false 19 | 20 | 21 | false 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/forceblur/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Force Blur 3 | Comment=Force-enable Blur effect for certain windows 4 | Icon=preferences-system-windows-script-test 5 | 6 | X-Plasma-API=declarativescript 7 | X-Plasma-MainScript=ui/main.qml 8 | 9 | X-KDE-PluginInfo-Author=Eon S. Jeon 10 | X-KDE-PluginInfo-Email=esjeon@hyunmu.am 11 | X-KDE-PluginInfo-Name=forceblur 12 | X-KDE-PluginInfo-Version=0.6 13 | X-KDE-PluginInfo-License=MIT 14 | 15 | Type=Service 16 | X-KDE-ServiceTypes=KWin/Script 17 | 18 | X-KDE-ConfigModule=kwin/effects/configs/kcm_kwin4_genericscripted 19 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/krohnkite/contents/code/main.js: -------------------------------------------------------------------------------- 1 | print("KWin need me. Don't ask why."); 2 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/krohnkite/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "KWin/Script", 3 | "KPlugin": { 4 | "Name": "Krohnkite", 5 | "Description": "A dynamic tiling script for KWin (879810a)", 6 | "Icon": "dialog-tile-clones", 7 | 8 | "Authors": [ 9 | { 10 | "Email": "esjeon@hyunmu.am", 11 | "Name": "Eon S. Jeon" 12 | } 13 | ], 14 | "Id": "krohnkite", 15 | "Version": "0.9.9.1", 16 | "License": "MIT", 17 | "Website": "https://github.com/anametologin/krohnkite#readme" 18 | }, 19 | "X-Plasma-API": "declarativescript", 20 | "X-Plasma-API-Minimum-Version": "6.0", 21 | "X-Plasma-MainScript": "ui/main.qml", 22 | "X-KDE-ConfigModule": "kwin/effects/configs/kcm_kwin4_genericscripted" 23 | } 24 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/movewindowtocenter/contents/code/main.js: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2018 Konstantinos Smanis 2 | // 3 | // This program is free software: you can redistribute it and/or modify 4 | // it under the terms of the GNU General Public License as published by 5 | // the Free Software Foundation, either version 2 of the License, or 6 | // (at your option) any later version. 7 | // 8 | // This program is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU General Public License for more details. 12 | // 13 | // You should have received a copy of the GNU General Public License 14 | // along with this program. If not, see . 15 | 16 | registerShortcut("MoveWindowToCenter", "Move Window to Center", "Meta+C", function () { 17 | var client = workspace.activeClient; 18 | if (client.moveable) { 19 | var maxArea = workspace.clientArea(KWin.MaximizeArea, client); 20 | client.geometry = { 21 | x: maxArea.x + (maxArea.width - client.width) / 2, 22 | y: maxArea.y + (maxArea.height - client.height) / 2, 23 | width: client.width, 24 | height: client.height 25 | }; 26 | } 27 | }); 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/movewindowtocenter/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Move Window to Center 3 | Comment=Centers the active window in the current screen. 4 | Icon=preferences-system-windows-move 5 | 6 | X-Plasma-API=javascript 7 | X-Plasma-MainScript=code/main.js 8 | 9 | X-KDE-PluginInfo-Author=Konstantinos Smanis 10 | X-KDE-PluginInfo-Email=konstantinos.smanis@gmail.com 11 | X-KDE-PluginInfo-Name=movewindowtocenter 12 | X-KDE-PluginInfo-Version=1.1 13 | X-KDE-PluginInfo-EnabledByDefault=true 14 | 15 | X-KDE-PluginInfo-Depends= 16 | X-KDE-PluginInfo-License=GPL 17 | X-KDE-ServiceTypes=KWin/Script 18 | Type=Service 19 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/screenSnapping5/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 10 | 11 | 12 | 10 13 | 14 | 15 | 10 16 | 17 | 18 | 10 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/scripts/screenSnapping5/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Screen Snapping 5 3 | Comment=Snap to deco instead of window content 4 | Icon=preferences-system-windows-script-test 5 | 6 | Type=Service 7 | 8 | X-Plasma-API=javascript 9 | X-Plasma-MainScript=code/main.js 10 | 11 | X-KDE-PluginInfo-Author=Bob Farmer 12 | X-KDE-PluginInfo-Email=kde@bfarmer.net 13 | X-KDE-PluginInfo-Name=screenSnapping5 14 | X-KDE-PluginInfo-Version=1.0 15 | 16 | X-KDE-PluginInfo-Depends= 17 | X-KDE-PluginInfo-License=GPL 18 | X-KDE-ServiceTypes=KWin/Script,KCModule 19 | X-KDE-Library=kwin/effects/configs/kcm_kwin4_genericscripted 20 | X-KDE-PluginKeyword=screenSnapping5 21 | X-KDE-ParentComponents=screenSnapping5 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/kwin/tabbox/preview_reel/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Preview Reel 3 | Comment= 4 | 5 | Type=Service 6 | X-KDE-ServiceTypes=KWin/WindowSwitcher 7 | 8 | X-Plasma-API=declarativeappletscript 9 | X-Plasma-MainScript=ui/main.qml 10 | 11 | Icon=preferences-system-windows-switcher-big-icons 12 | X-KDE-PluginInfo-Author=Mohamed Helmy 13 | X-KDE-PluginInfo-Email=helmym40@gmail.com 14 | X-KDE-PluginInfo-Name=preview_reel 15 | X-KDE-PluginInfo-Version=0.1 16 | X-KDE-PluginInfo-Depends= 17 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.12 2 | import org.kde.plasma.configuration 2.0 3 | 4 | ConfigModel { 5 | ConfigCategory { 6 | name: i18n("General") 7 | icon: "preferences-desktop" 8 | source: "GeneralConfig.qml" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | true 11 | 12 | 13 | 0 14 | 15 | 16 | 0 17 | 18 | 19 | true 20 | 21 | 22 | true 23 | 24 | 25 | true 26 | 27 | 28 | false 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ar/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ar/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/de/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/de/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/es/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/es/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/fr/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/fr/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/hi/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/hi/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ja/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ja/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ko/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/ko/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/nl/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/nl/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/zh-cn/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/zh-cn/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/zh-tw/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/locale/zh-tw/LC_MESSAGES/plasma_applet_Plasma.Control.Hub.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/UserInfo.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 2.15 3 | import org.kde.coreaddons 1.0 as KCoreAddons 4 | import Qt5Compat.GraphicalEffects 5 | 6 | Item { 7 | 8 | property string codeleng: ((Qt.locale().name)[0]+(Qt.locale().name)[1]) 9 | 10 | KCoreAddons.KUser { 11 | id: kuser 12 | } 13 | 14 | function capitalizeFirstLetter(string) { 15 | if (!string || string.length === 0) { 16 | return ""; 17 | } 18 | return string.charAt(0).toUpperCase() + string.slice(1); 19 | } 20 | 21 | 22 | property string name: i18n("Hi") + " " + capitalizeFirstLetter(kuser.fullName) 23 | property string urlAvatar: kuser.faceIconUrl 24 | 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/components/ConnectionItem.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import "../lib" as Lib 3 | import org.kde.plasma.networkmanagement as PlasmaNM 4 | 5 | Lib.LongButton { 6 | title: Name 7 | source: ConnectionIcon 8 | 9 | Network { 10 | id: network 11 | } 12 | 13 | function itemText() { 14 | if (ConnectionState === PlasmaNM.Enums.Activating) { 15 | if (Type === PlasmaNM.Enums.Vpn) 16 | return VpnState 17 | else 18 | return DeviceState 19 | } else if (ConnectionState === PlasmaNM.Enums.Deactivating) { 20 | if (Type === PlasmaNM.Enums.Vpn) 21 | return VpnState 22 | else 23 | return DeviceState 24 | } else if (Uuid && ConnectionState === PlasmaNM.Enums.Deactivated) { 25 | return LastUsed 26 | } else if (ConnectionState === PlasmaNM.Enums.Activated) { 27 | return i18n("Connected") 28 | } 29 | return "Unknown" 30 | } 31 | subtitle: itemText() 32 | 33 | onClicked: { 34 | if (ConnectionState === PlasmaNM.Enums.Activated) { 35 | network.handler.deactivateConnection(ConnectionPath, DevicePath) 36 | } else { 37 | network.handler.activateConnection(ConnectionPath, DevicePath, 38 | SpecificPath) 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/components/Network.qml: -------------------------------------------------------------------------------- 1 | import QtQml 2.0 2 | import QtQuick 2.0 3 | import org.kde.plasma.networkmanagement as PlasmaNM 4 | 5 | Item { 6 | property var appletProxyModel: appletProxyModel 7 | property var netStatusText: netStatus.activeConnections 8 | property var activeConnectionIcon: activeConnectionIcon.connectionIcon 9 | property var enabledConnections: enabledConnections 10 | property var availableDevices: availableDevices 11 | property var handler: handler 12 | 13 | 14 | PlasmaNM.ConnectionIcon { 15 | id: activeConnectionIcon 16 | connectivity: netStatus.connectivity 17 | } 18 | PlasmaNM.Handler { 19 | id: handler 20 | } 21 | PlasmaNM.NetworkStatus { 22 | id: netStatus 23 | } 24 | PlasmaNM.AppletProxyModel { 25 | id: appletProxyModel 26 | sourceModel: PlasmaNM.NetworkModel{} 27 | } 28 | PlasmaNM.EnabledConnections { 29 | id: enabledConnections 30 | } 31 | PlasmaNM.AvailableDevices { 32 | id: availableDevices 33 | } 34 | 35 | 36 | } 37 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/js/GetCity.js: -------------------------------------------------------------------------------- 1 | function getNameCity(latitude, longitud, leng, callback) { 2 | let url = `https://nominatim.openstreetmap.org/reverse?format=json&lat=${latitude}&lon=${longitud}&accept-language=${leng}`; 3 | console.log("Generated URL: ", url); // Para verificar la URL generada 4 | 5 | let req = new XMLHttpRequest(); 6 | req.open("GET", url, true); 7 | 8 | req.onreadystatechange = function () { 9 | if (req.readyState === 4) { 10 | if (req.status === 200) { 11 | try { 12 | let datos = JSON.parse(req.responseText); 13 | let address = datos.address; 14 | let city = address.city; 15 | let county = address.county; 16 | let state = address.state; 17 | let full = city ? city : state ? state : county; 18 | console.log(full); 19 | callback(full); 20 | } catch (e) { 21 | console.error("Error al analizar la respuesta JSON: ", e); 22 | } 23 | } else { 24 | console.error(`city failed`); 25 | } 26 | } 27 | }; 28 | 29 | req.onerror = function () { 30 | console.error("La solicitud falló"); 31 | }; 32 | 33 | req.ontimeout = function () { 34 | console.error("La solicitud excedió el tiempo de espera"); 35 | }; 36 | 37 | req.send(); 38 | } 39 | 40 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/js/GetModelWeather.js: -------------------------------------------------------------------------------- 1 | function GetForecastWeather(latitud, longitud, fechaInicio, fechaFin, callback) { 2 | let url = `https://api.open-meteo.com/v1/forecast?latitude=${latitud}&longitude=${longitud}&daily=weather_code,temperature_2m_max,temperature_2m_min&timezone=auto&start_date=${fechaInicio}&end_date=${fechaFin}`; 3 | 4 | let req = new XMLHttpRequest(); 5 | req.open("GET", url, true); 6 | 7 | req.onreadystatechange = function () { 8 | if (req.readyState === 4) { 9 | if (req.status === 200) { 10 | let datos = JSON.parse(req.responseText); 11 | 12 | let daily = datos.daily; 13 | let codes = daily.weather_code.join(' '); 14 | let max = daily.temperature_2m_max.join(' '); 15 | let min = daily.temperature_2m_min.join(' '); 16 | 17 | let full = codes + " " + max + " " + min 18 | console.log(`${full}`); 19 | callback(full); 20 | } else { 21 | console.error(`Error en la solicitud: ${req.status}`); 22 | } 23 | } 24 | }; 25 | 26 | req.send(); 27 | } 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/js/geoCoordinates.js: -------------------------------------------------------------------------------- 1 | function obtenerCoordenadas(callback) { 2 | let url = "http://ip-api.com/json/?fields=lat,lon"; 3 | 4 | let req = new XMLHttpRequest(); 5 | req.open("GET", url, true); 6 | 7 | req.onreadystatechange = function () { 8 | if (req.readyState === 4) { 9 | if (req.status === 200) { 10 | try { 11 | let datos = JSON.parse(req.responseText); 12 | let latitud = datos.lat; 13 | let longitud = datos.lon; 14 | let full = `${latitud}, ${longitud}`; 15 | console.log(`Coordenadas obtenidas: ${full}`); 16 | callback(full); // Devolver coordenadas completas 17 | } catch (error) { 18 | console.error("Error procesando la respuesta JSON:", error); 19 | callback(null); // Devolver null en caso de error de parsing 20 | } 21 | } else { 22 | console.error(`Error en la solicitud: ${req.status}`); 23 | callback(null); // Devolver null en caso de error de solicitud 24 | } 25 | } 26 | }; 27 | 28 | req.onerror = function () { 29 | console.error("Error de red al intentar obtener coordenadas."); 30 | callback(null); // Devolver null en caso de error de red 31 | }; 32 | 33 | req.send(); 34 | } 35 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/contents/ui/lib/Card.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: zayronxio 3 | * SPDX-License-Identifier: GPL-3.0-or-later 4 | */ 5 | import QtQuick 6 | import Qt5Compat.GraphicalEffects 7 | import org.kde.plasma.plasmoid 2.0 8 | 9 | Item { 10 | id: root 11 | property bool globalBool: true 12 | HelperCard { 13 | id: background 14 | isShadow: false 15 | width: parent.width 16 | height: parent.height 17 | //opacity: enabledCustomColor || enabledColor ? 0.8 : 1.0 18 | visible: globalBool 19 | } 20 | HelperCard { 21 | id: shadow 22 | isShadow: true 23 | width: parent.width 24 | height: parent.height 25 | visible: globalBool 26 | opacity: 0.7//shadowOpacity/10 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Plasma Control Hub 3 | 4 | Type=Service 5 | Icon=configure 6 | X-KDE-ServiceTypes=Plasma/Applet 7 | 8 | X-Plasma-API=declarativeappletscript 9 | X-Plasma-MainScript=ui/main.qml 10 | X-KDE-PluginInfo-Name=Plasma.Control.Hub 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "adolfo@librepixels.com", 6 | "Name": "zayronxio" 7 | } 8 | ], 9 | "Name": "Plasma Control Hub", 10 | "Id": "Plasma.Control.Hub", 11 | "Description": "Plasmoid that provides direct access to various configuration aspects as well as multimedia information, inspired by the macOS Control Center", 12 | "Category": "Utilities", 13 | "Icon": "configure", 14 | "EnabledByDefault": true, 15 | "License": "GPL-3.0+", 16 | "ServiceTypes": [ 17 | "Plasma/Applet" 18 | ], 19 | "Version": "0.9.1", 20 | "Website": "https://github.com/zayronxio/Plasma-Control-Hub/" 21 | }, 22 | "X-Plasma-API-Minimum-Version": "6.0", 23 | "X-Plasma-NotificationAreaCategory": "SystemServices", 24 | "X-Plasma-Provides": "org.kde.plasma.multimediacontrols,org.kde.plasma.powermanagement,org.kde.plasma.notifications", 25 | "X-Plasma-NotificationArea": "true", 26 | "X-Plasma-MainScript": "ui/main.qml", 27 | "KPackageStructure": "Plasma/Applet" 28 | } 29 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/Plasma.Control.Hub/translate/ pt.po: -------------------------------------------------------------------------------- 1 | # Translation of plasma control hub in LANGUAGE 2 | # Copyright (C) 2024 3 | # This file is distributed under the same license as the plasma control hub package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: plasma control hub\n" 10 | "Report-Msgid-Bugs-To: https://store.kde.org/p/2139890/\n" 11 | "POT-Creation-Date: 2024-12-01 16:59-0300\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | 21 | #: ../contents/ui/FullRepresentation.qml 22 | msgid "Settings" 23 | msgstr "Configurações" 24 | 25 | #: ../contents/ui/FullRepresentation.qml 26 | msgid "System Settings" 27 | msgstr "Configurações do sistema" 28 | 29 | #: ../contents/ui/FullRepresentation.qml 30 | msgid "Volume" 31 | msgstr "Volume" 32 | 33 | #: ../contents/ui/FullRepresentation.qml 34 | msgid "Bluetooth" 35 | msgstr "Bluetooth" 36 | 37 | #: ../contents/ui/FullRepresentation.qml 38 | msgid "Network" 39 | msgstr "Rede" 40 | 41 | #: ../contents/ui/FullRepresentation.qml 42 | msgid "DND" 43 | msgstr "DND" 44 | 45 | #: ../contents/ui/js/funcs.js 46 | msgid "Disabled" 47 | msgstr "Desligado" 48 | 49 | #: ../contents/ui/js/funcs.js 50 | msgid "Offline" 51 | msgstr "Offline" 52 | 53 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2024 Evgeny Kazantsev 3 | SPDX-License-Identifier: MIT 4 | */ 5 | 6 | import org.kde.plasma.configuration 7 | 8 | ConfigModel { 9 | ConfigCategory { 10 | name: i18n("General") 11 | icon: "preferences-desktop" 12 | source: "configuration/General.qml" 13 | } 14 | 15 | ConfigCategory { 16 | name: i18n("Upgrade") 17 | icon: "preferences-system-startup" 18 | source: "configuration/Upgrade.qml" 19 | } 20 | 21 | ConfigCategory { 22 | name: i18n("Appearance") 23 | icon: "preferences-desktop-display-color" 24 | source: "configuration/Appearance.qml" 25 | } 26 | 27 | ConfigCategory { 28 | name: i18n("Rules") 29 | icon: "preferences-system-windows-behavior" 30 | source: "configuration/Rules.qml" 31 | } 32 | 33 | ConfigCategory { 34 | name: i18n("Support me") 35 | icon: "starred-symbolic" 36 | source: "configuration/Support.qml" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/de/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/de/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/es/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/es/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/fr/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/fr/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/ko/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/ko/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/nl/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/nl/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/pl/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/pl/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/ru/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/locale/ru/LC_MESSAGES/plasma_applet_com.github.exequtic.apdatifier.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/art/apdatifier-donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/art/apdatifier-donate.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/art/apdatifier-githubstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/art/apdatifier-githubstar.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/apdatifier-package.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 12 | 13 | 16 | 17 | 21 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_error.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_news.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_package.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_updated.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/status_widgets.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/tab_compact.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/tab_extended.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_check.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_management.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_pause.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_search.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_sort.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_start.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_stop.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/assets/icons/toolbar_upgrade.svg: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/components/Badge.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2024 Evgeny Kazantsev 3 | SPDX-License-Identifier: MIT 4 | */ 5 | 6 | import QtQuick 7 | import org.kde.kirigami as Kirigami 8 | import "../../tools/tools.js" as JS 9 | 10 | Rectangle { 11 | property var position: 0 12 | property var iconName: "" 13 | property var iconColor: "" 14 | 15 | width: (counterOverlay ? trayIconSize : panelIcon.width) / 3 16 | height: width 17 | radius: width / 2 18 | color: cfg.counterColor ? cfg.counterColor : Kirigami.Theme.backgroundColor 19 | 20 | anchors { 21 | top: counterOverlay ? JS.setAnchor("top", position) : panelIcon.top 22 | bottom: counterOverlay ? JS.setAnchor("bottom", position) : undefined 23 | right: counterOverlay ? JS.setAnchor("right", position) : (position === "right" ? panelIcon.right : undefined) 24 | left: counterOverlay ? JS.setAnchor("left", position) : (position === "left" ? panelIcon.left : undefined) 25 | 26 | topMargin: counterOverlay ? 0 : 5 27 | bottomMargin: counterOverlay ? 0 : 0 28 | leftMargin: counterOverlay ? 0 : -1 29 | rightMargin: counterOverlay ? 0 : -1 30 | } 31 | 32 | Kirigami.Icon { 33 | anchors.fill: parent 34 | source: cfg.ownIconsUI ? Qt.resolvedUrl("../assets/icons/" + iconName + ".svg") : iconName 35 | color: iconColor 36 | isMask: cfg.ownIconsUI 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/contents/ui/components/Shell.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2024 Evgeny Kazantsev 3 | SPDX-License-Identifier: MIT 4 | */ 5 | 6 | import QtQuick 7 | import org.kde.plasma.plasma5support as Plasma5Support 8 | 9 | Plasma5Support.DataSource { 10 | id: executable 11 | engine: "executable" 12 | connectedSources: [] 13 | onNewData: (sourceName, data) => { 14 | var cmd = sourceName 15 | var out = data["stdout"] 16 | var err = data["stderr"] 17 | var code = data["exit code"] 18 | 19 | exited(cmd, out, err, code) 20 | 21 | listeners[cmd](cmd, out, err, code) 22 | } 23 | 24 | signal exited(string cmd, string out, string err, int code) 25 | 26 | property var listeners: ({}) 27 | 28 | function exec(cmd, callback) { 29 | listeners[cmd] = execCallback.bind(executable, callback) 30 | connectSource(cmd) 31 | } 32 | 33 | function execCallback(callback, cmd, out, err, code) { 34 | cleanup() 35 | if (callback) callback(cmd, out, err, code) 36 | } 37 | 38 | function cleanup() { 39 | for (var cmd in listeners) { 40 | delete listeners[cmd] 41 | disconnectSource(cmd) 42 | } 43 | this.destroy() 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Name": "Evgeny Kazantsev", 6 | "Email": "exequtic@gmail.com" 7 | } 8 | ], 9 | "Category": "System Information", 10 | "Description": "Arch Update Notifier", 11 | "Icon": "apdatifier-plasmoid", 12 | "Id": "com.github.exequtic.apdatifier", 13 | "Name": "Apdatifier", 14 | "EnabledByDefault": true, 15 | "Version": "2.9.3", 16 | "License": "MIT", 17 | "BugReportUrl": "https://github.com/exequtic/apdatifier/issues", 18 | "Website": "https://github.com/exequtic/apdatifier" 19 | }, 20 | "KPackageStructure": "Plasma/Applet", 21 | "X-Plasma-API-Minimum-Version": "6.0", 22 | "X-Plasma-NotificationArea": "true", 23 | "X-Plasma-NotificationAreaCategory": "SystemServices" 24 | } 25 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.exequtic.apdatifier/translate/ReadMe.md: -------------------------------------------------------------------------------- 1 | > Version 7 of Zren's i18n scripts. 2 | 3 | ## New Translations 4 | 5 | Fill out [`template.pot`](template.pot) with your translations then open a [new issue](https://github.com/exequtic/apdatifier/issues/new), name the file with the extension `.txt`, attach the txt file to the issue (drag and drop). 6 | 7 | Or if you know how to make a pull request: 8 | 9 | Copy the [`template.pot`](template.pot) file to [`./po`](po) directory and name it your locale's code (Eg: `en`/`de`/`fr`) with the extension `.po`. Then fill out all the `msgstr ""`. 10 | 11 | ## Scripts 12 | 13 | * `sh ./merge` will parse the `i18n()` calls in the `*.qml` files and write it to the `template.pot` file. Then it will merge any changes into the `*.po` language files. 14 | * `sh ./build` will convert the `*.po` files to it's binary `*.mo` version and move it to `contents/locale/...` 15 | 16 | ## Links 17 | 18 | * https://zren.github.io/kde/docs/widget/#translations-i18n 19 | * https://github.com/Zren/plasma-applet-lib/tree/master/package/translate 20 | 21 | ## Status 22 | | Locale | Lines | % Done| 23 | |----------|---------|-------| 24 | | Template | 249 | | 25 | | de | 228/249 | 91% | 26 | | es | 228/249 | 91% | 27 | | fr | 249/249 | 100% | 28 | | ko | 134/249 | 53% | 29 | | nl | 182/249 | 73% | 30 | | pl | 228/249 | 91% | 31 | | pt_BR | 228/249 | 91% | 32 | | ru | 249/249 | 100% | 33 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2025 Kevin Donnelly 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 org.kde.plasma.configuration 18 | 19 | ConfigModel { 20 | ConfigCategory { 21 | name: i18n("Station") 22 | icon: "flag" 23 | source: "config/ConfigStation.qml" 24 | } 25 | ConfigCategory { 26 | name: i18n("Appearance") 27 | icon: "preferences-desktop-color" 28 | source: "config/ConfigAppearance.qml" 29 | } 30 | ConfigCategory { 31 | name: i18n("Units") 32 | icon: "configure" 33 | source: "config/ConfigUnits.qml" 34 | } 35 | ConfigCategory { 36 | name: i18n("Debug") 37 | icon: "preferences-other" 38 | source: "config/ConfigDebug.qml" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/23.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/24.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/44.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/47.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/cloud-filled-lightning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/cloud-filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/cloud-fllled-rain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/clouds-filled-lightning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/compass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/moon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/not-applicable.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/thermometer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/0-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 0–2 knots 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/13-17.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 13–17 knots 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/18-22.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 18–22 knots 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/23-27.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 23–27 knots 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/28-32.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 28–32 knots 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/3-7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 3–7 knots 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/icons/wind-barbs/8-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Observed wind speed: 8–12 knots 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/ui/MoreInfoItem.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2025 Kevin Donnelly 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 | 18 | import QtQuick.Layouts 19 | import org.kde.plasma.plasmoid 20 | import org.kde.plasma.components as PlasmaComponents 21 | 22 | ColumnLayout { 23 | id: moreInfoRoot 24 | 25 | AirAndSolarItem { 26 | id: airSolarItem 27 | } 28 | 29 | AlertsItem { 30 | id: alertsItem 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/ui/lib/BackgroundToggle.qml: -------------------------------------------------------------------------------- 1 | // Version 1 2 | 3 | import QtQuick 4 | import QtQuick.Controls as QQC2 5 | import org.kde.plasma.core as PlasmaCore 6 | import org.kde.kirigami as Kirigami 7 | 8 | // From the Widget ConfigOverlay: 9 | // https://invent.kde.org/plasma/plasma-desktop/-/blame/master/containments/desktop/package/contents/ui/ConfigOverlay.qml 10 | QQC2.CheckBox { 11 | Kirigami.FormData.label: i18n("Desktop Widget:") 12 | text: i18nd("plasma_applet_org.kde.desktopcontainment", "Show Background") 13 | visible: (plasmoid.backgroundHints & PlasmaCore.Types.ConfigurableBackground) 14 | checked: plasmoid.effectiveBackgroundHints & PlasmaCore.Types.StandardBackground || plasmoid.effectiveBackgroundHints & PlasmaCore.Types.TranslucentBackground 15 | onClicked: { 16 | if (checked) { 17 | if (plasmoid.backgroundHints & PlasmaCore.Types.StandardBackground || plasmoid.backgroundHints & PlasmaCore.Types.TranslucentBackground) { 18 | plasmoid.userBackgroundHints = plasmoid.backgroundHints 19 | } else { 20 | plasmoid.userBackgroundHints = PlasmaCore.Types.StandardBackground 21 | } 22 | } else { 23 | if (plasmoid.backgroundHints & PlasmaCore.Types.ShadowBackground || plasmoid.backgroundHints & PlasmaCore.Types.NoBackground) { 24 | plasmoid.userBackgroundHints = plasmoid.backgroundHints 25 | } else { 26 | plasmoid.userBackgroundHints = PlasmaCore.Types.ShadowBackground 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.k-donn.plasmoid-wunderground/contents/ui/lib/ConfigBtn.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2025 Kevin Donnelly 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 | 18 | import QtQuick 19 | import QtQuick.Layouts 20 | import QtQuick.Controls as QQC 21 | import org.kde.plasma.plasmoid 22 | import org.kde.plasma.core as PlasmaCore 23 | 24 | QQC.Button { 25 | text: i18n("Configure Wunderground") 26 | icon.name: "settings" 27 | 28 | onClicked: plasmoid.internalAction("configure").trigger() 29 | } 30 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | import org.kde.plasma.configuration 2 | 3 | ConfigModel { 4 | ConfigCategory { 5 | name: i18n("Appearance") 6 | icon: "preferences-desktop-color" 7 | source: "configAppearance.qml" 8 | } 9 | ConfigCategory { 10 | name: i18n("Behaviour") 11 | icon: "preferences-desktop" 12 | source: "configPreferences.qml" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/fonts/Hasteristico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/fonts/Hasteristico.ttf -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/BooleanField.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | import QtQuick.Layouts 4 | 5 | RowLayout { 6 | property alias text: label.text 7 | property alias checked: checkbox.checked 8 | 9 | Label { 10 | id: label 11 | } 12 | CheckBox { 13 | id: checkbox 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/ColorField.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | import QtQuick.Layouts 4 | import QtQuick.Dialogs 5 | import org.kde.kirigami 2.4 as Kirigami 6 | import org.kde.kquickcontrols 2.0 as KQControls 7 | 8 | RowLayout { 9 | id: colorfield 10 | property alias text: label.text 11 | property alias color: colorbutton.color 12 | 13 | Label { 14 | id: label 15 | } 16 | KQControls.ColorButton { 17 | id: colorbutton 18 | color: root.color 19 | showAlphaChannel: false 20 | 21 | onAccepted: { 22 | colorfield.color = color 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/NumberField.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | import QtQuick.Layouts 4 | import org.kde.plasma.core as PlasmaCore 5 | 6 | RowLayout { 7 | property alias text: label.text 8 | property alias value: spinbox.value 9 | property alias enabled: spinbox.enabled 10 | 11 | Label { 12 | id: label 13 | color: spinbox.enabled ? PlasmaCore.Theme.textColor : PlasmaCore.Theme.disabledTextColor 14 | } 15 | SpinBox { 16 | id: spinbox 17 | from: 0; to: 999999 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/SysMonLabel.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Layouts 3 | import org.kde.plasma.components as PlasmaComponents 4 | 5 | RowLayout { 6 | id: labelWrapper 7 | property alias text: displayText.text 8 | property alias from: displayText.from 9 | property alias to: displayText.to 10 | property string color; 11 | property string usage; 12 | property string unit; 13 | 14 | FontLabel { 15 | id: displayText 16 | font.family: root.fontFamily 17 | font.pixelSize: root.sysMonTextFontSize 18 | color: labelWrapper.color 19 | currentVal: usage 20 | } 21 | FontLabel { 22 | id: usageText 23 | font.family: root.fontFamily 24 | font.pixelSize: root.sysMonUsageFontSize 25 | color: labelWrapper.color 26 | fill: false 27 | text: unit ? usage + unit : usage 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/Title.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | import QtQuick.Layouts 4 | 5 | Label { 6 | font.pixelSize: 18 7 | Layout.topMargin: 10 8 | } 9 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/contents/ui/configPreferences.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | import QtQuick.Layouts 4 | import org.kde.kcmutils as KCM 5 | 6 | KCM.SimpleKCM { 7 | ColumnLayout { 8 | property alias cfg_sys_mon_interval: sysMonInterval.value 9 | Title { 10 | text: i18n("System Monitor") 11 | } 12 | NumberField { 13 | id: sysMonInterval 14 | text: i18n("Interval (in milliseconds)") 15 | } 16 | Item { 17 | Layout.fillHeight: true 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.github.prayag2.aestheticclock/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "prayagjain2@gmail.com", 6 | "Name": "Prayag Jain" 7 | } 8 | ], 9 | "Category": "Date and Time", 10 | "Description": "An aesthetic looking and customizable widget with a built-in system monitor and media player!", 11 | "Icon": "org.kde.plasma.digitalclock", 12 | "Id": "com.github.prayag2.aestheticclock", 13 | "License": "GPLv3", 14 | "Name": "Aesthetic Clock", 15 | "ServiceTypes": [ 16 | "Plasma/Applet" 17 | ], 18 | "Version": "0.2.2", 19 | "Website": "https://github.com/prayag2/kde_aestheticclock" 20 | }, 21 | "X-Plasma-API-Minimum-Version": "6.0", 22 | "X-Plasma-Provides": "org.kde.plasma.time,org.kde.plasma.date", 23 | "KPackageStructure": "Plasma/Applet" 24 | } 25 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.himdek.kde.plasma.overview/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2013 Marco Martin 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.0 8 | import org.kde.plasma.configuration 2.0 9 | 10 | ConfigModel { 11 | ConfigCategory { 12 | name: i18n("General") 13 | icon: "preferences-desktop-plasma" 14 | source: "configGeneral.qml" 15 | } 16 | } -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.himdek.kde.plasma.overview/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | dialog-layers 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | if [ -x "$(command -v qdbus6)" ]; then qdbus6 org.kde.kglobalaccel /component/kwin invokeShortcut Overview; elif [ -x "$(command -v qdbus)" ]; then qdbus org.kde.kglobalaccel /component/kwin invokeShortcut Overview; elif [ -x "$(command -v qdbus5)" ]; then qdbus5 org.kde.kglobalaccel /component/kwin invokeShortcut Overview; fi 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/com.himdek.kde.plasma.overview/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Applet", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "info@himdek.com", 7 | "Name": "Himprakash Deka" 8 | } 9 | ], 10 | "Category": "Windows and Tasks", 11 | "ServiceTypes": [ 12 | "Plasma/Applet" 13 | ], 14 | "EnabledByDefault": true, 15 | "Name": "Overview", 16 | "Description": "Toggle Overview", 17 | "Id": "com.himdek.kde.plasma.overview", 18 | "Icon": "dialog-layers", 19 | "Version": "1.5", 20 | "License": "GPL-3.0-or-later", 21 | "BugReportUrl": "https://github.com/HimDek/Overview-Widget-for-Plasma/issues/new", 22 | "Website": "https://himdek.com/Overview-Widget-for-Plasma/" 23 | }, 24 | "X-Plasma-API-Minimum-Version": "6.0" 25 | } 26 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/de/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/de/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/nl/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/nl/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/zh/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/locale/zh/LC_MESSAGES/plasma_applet_luisbocanegra.panel.colorizer.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/CompactRepresentation.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import "components" as Components 3 | import org.kde.kirigami as Kirigami 4 | import org.kde.plasma.core as PlasmaCore 5 | 6 | MouseArea { 7 | id: compact 8 | 9 | property bool isPanelVertical: plasmoid.formFactor === PlasmaCore.Types.Vertical 10 | property real itemSize: Math.min(compact.height, compact.width) 11 | property string icon 12 | 13 | signal widgetClicked 14 | 15 | anchors.fill: parent 16 | hoverEnabled: true 17 | onClicked: { 18 | widgetClicked(); 19 | } 20 | 21 | Item { 22 | id: container 23 | 24 | height: compact.itemSize 25 | width: compact.width 26 | anchors.centerIn: parent 27 | 28 | Components.PlasmoidIcon { 29 | id: plasmoidIcon 30 | 31 | height: Kirigami.Units.iconSizes.roundedIconSize(Math.min(parent.width, parent.height)) 32 | width: height 33 | source: icon 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/ConfiguringIndicator.qml: -------------------------------------------------------------------------------- 1 | pragma ComponentBehavior: Bound 2 | import QtQuick 2.15 3 | import org.kde.kirigami as Kirigami 4 | 5 | Item { 6 | id: root 7 | anchors.fill: parent 8 | Rectangle { 9 | anchors.centerIn: parent 10 | color: "#7f000000" 11 | height: Math.min(parent.height, parent.width) * 0.75 12 | width: height 13 | radius: height / 2 14 | 15 | Kirigami.Icon { 16 | anchors.centerIn: parent 17 | source: "configure" 18 | width: Math.min(parent.height, parent.width) 19 | height: width 20 | smooth: true 21 | color: "#fafafa" 22 | roundToIconSize: false 23 | isMask: true 24 | NumberAnimation on rotation { 25 | from: 0 26 | to: 360 27 | running: true 28 | loops: Animation.Infinite 29 | duration: 3000 30 | } 31 | } 32 | } 33 | 34 | Component.onCompleted: console.log("grid created in", root.parent) 35 | } 36 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/DBusServiceModel.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import org.kde.plasma.plasmoid 3 | 4 | Item { 5 | id: root 6 | 7 | property bool enabled: false 8 | property string toolsDir: Qt.resolvedUrl("./tools").toString().substring(7) + "/" 9 | property string serviceUtil: toolsDir + "service.py" 10 | property string pythonExecutable: plasmoid.configuration.pythonExecutable 11 | property string serviceCmd: pythonExecutable + " '" + serviceUtil + "' " + Plasmoid.containment.id + " " + Plasmoid.id 12 | readonly property string service: Plasmoid.metaData.pluginId + ".c" + Plasmoid.containment.id + ".w" + Plasmoid.id 13 | readonly property string path: "/preset" 14 | 15 | function toggleService() { 16 | if (enabled) 17 | runCommand.run(serviceCmd); 18 | else 19 | (dbusQuit.call()); 20 | } 21 | 22 | onEnabledChanged: toggleService() 23 | Component.onCompleted: toggleService() 24 | 25 | DBusMethodCall { 26 | id: dbusQuit 27 | 28 | service: root.service 29 | objectPath: "/preset" 30 | iface: root.service 31 | method: "quit" 32 | arguments: [] 33 | } 34 | 35 | RunCommand { 36 | id: runCommand 37 | 38 | onExited: (cmd, exitCode, exitStatus, stdout, stderr) => { 39 | if (exitCode !== 0) 40 | console.error(cmd, exitCode, exitStatus, stdout, stderr); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/Enums.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | 3 | Item { 4 | 5 | enum ItemType { 6 | WidgetItem, 7 | TrayItem, 8 | TrayArrow, 9 | PanelBgItem 10 | } 11 | 12 | enum ThemeFormColors { 13 | TextColor, 14 | DisabledTextColor, 15 | HighlightedTextColor, 16 | ActiveTextColor, 17 | LinkColor, 18 | VisitedLinkColor, 19 | NegativeTextColor, 20 | NeutralTextColor, 21 | PositiveTextColor, 22 | BackgroundColor, 23 | HighlightColor, 24 | ActiveBackgroundColor, 25 | LinkBackgroundColor, 26 | VisitedLinkBackgroundColor, 27 | NegativeBackgroundColor, 28 | NeutralBackgroundColor, 29 | PositiveBackgroundColor, 30 | AlternateBackgroundColor, 31 | FocusColor, 32 | HoverColor 33 | } 34 | 35 | enum ThemeScopes { 36 | View, 37 | Window, 38 | Button, 39 | Selection, 40 | Tooltip, 41 | Complementary, 42 | Header 43 | } 44 | 45 | enum ColorSourceType { 46 | Custom, 47 | System, 48 | CustomList, 49 | Random, 50 | Follow 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/code/enum.js: -------------------------------------------------------------------------------- 1 | const WidgetClickModes = { 2 | TogglePanelColorizer: 0, 3 | SwitchPresets: 1, 4 | ShowPopup: 2, 5 | }; 6 | 7 | const WidgetStates = { 8 | Normal: 0, 9 | Busy: 1, 10 | NeedsAttention: 2, 11 | Hovered: 3, 12 | Expanded: 4, 13 | }; 14 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/components/CategoryDisabled.qml: -------------------------------------------------------------------------------- 1 | // import org.kde.kcmutils as KCM 2 | import org.kde.kirigami as Kirigami 3 | import org.kde.plasma.plasmoid 4 | 5 | // KCM.SimpleKCM { 6 | Kirigami.PlaceholderMessage { 7 | id: categoryDisabledMessage 8 | 9 | icon.name: "action-unavailable-symbolic" 10 | text: i18n("Panel Colorizer is disabled") 11 | width: parent.width - (Kirigami.Units.largeSpacing * 4) 12 | anchors.centerIn: parent 13 | 14 | helpfulAction: Kirigami.Action { 15 | icon.name: "checkmark-symbolic" 16 | text: i18n("Enable") 17 | onTriggered: { 18 | cfg_isEnabled = true; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/components/PlasmoidIcon.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import org.kde.kirigami as Kirigami 3 | 4 | Item { 5 | id: root 6 | 7 | property var source 8 | 9 | anchors.centerIn: parent 10 | anchors.fill: parent 11 | 12 | Kirigami.Icon { 13 | anchors.centerIn: parent 14 | width: Math.min(parent.height, parent.width) 15 | height: width 16 | source: root.source 17 | active: compact.containsMouse 18 | isMask: true 19 | color: compact.onDesktop ? Kirigami.Theme.negativeTextColor : Kirigami.Theme.textColor 20 | opacity: plasmoid.configuration.isEnabled ? 1 : 0.5 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/components/SpinBoxDecimal.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtQuick.Controls 3 | 4 | TextField { 5 | id: root 6 | 7 | property real from: 0 8 | property real to: 1 9 | property int decimals: 2 10 | property real stepSize: 0.1 11 | property real value: 0 12 | 13 | placeholderText: "0-1" 14 | text: "0.00" 15 | onTextChanged: { 16 | if (!acceptableInput) 17 | return; 18 | 19 | value = parseFloat(text).toFixed(2); 20 | } 21 | onValueChanged: { 22 | root.value = isNaN(value) ? 0 : value; 23 | text = root.value.toFixed(validator.decimals).toString() ?? "0.00"; 24 | } 25 | 26 | ValueMouseControl { 27 | height: parent.height - 8 28 | width: height 29 | anchors.right: parent.right 30 | anchors.rightMargin: 4 31 | anchors.verticalCenter: parent.verticalCenter 32 | from: parent.validator.bottom 33 | to: parent.validator.top 34 | decimals: parent.validator.decimals 35 | stepSize: 0.05 36 | value: parent.value 37 | onValueChanged: { 38 | parent.value = parseFloat(value).toFixed(decimals); 39 | } 40 | } 41 | 42 | validator: DoubleValidator { 43 | bottom: root.from 44 | top: root.to 45 | decimals: root.decimals 46 | notation: DoubleValidator.StandardNotation 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black Color Lines/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black Color Lines/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black Gray Lines/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black Gray Lines/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Black/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Bliss Light/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Bliss Light/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Bliss/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Bliss/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Blur Widgets 2/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Blur Widgets 2/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Blur Widgets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Blur Widgets/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Carbon/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Carbon/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/ChromeOS/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/ChromeOS/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Default/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Default/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Dock/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Dock/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Eclipse/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Eclipse/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fake Floating/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fake Floating/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion 2/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion 2/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion 3/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion 3/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Fusion/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Neon Lights/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Neon Lights/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/OG/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/OG/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Orbit/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Orbit/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline Accent/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline Accent/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline Colors/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline Colors/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Outline/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Pulse/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Pulse/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rounded Widgets Floating/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rounded Widgets Floating/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rounded Widgets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rounded Widgets/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rubik/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Rubik/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skeuomorphic 2/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skeuomorphic 2/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skeuomorphic white/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skeuomorphic white/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skittles/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Skittles/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Sky/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Sky/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Sleek/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Sleek/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Solid/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Solid/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Translucent/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Translucent/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Transparent/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/Transparent/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/White/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/presets/White/preview.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/tools/gdbus_get_signal.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Waits for and returns the first message generated by a given service, interface path method 4 | 5 | BUS_TYPE=${1} 6 | SERVICE=${2} 7 | INTERFACE=${3} 8 | DBUS_PATH=${4} 9 | METHOD=${5} 10 | TMPFILE=$(mktemp) 11 | gdbus monitor --"${BUS_TYPE}" --dest "${SERVICE}" >"$TMPFILE" & 12 | PID=$! 13 | exit_code=130 14 | tail -f "$TMPFILE" | while IFS= read -r line; do 15 | if [[ "$line" == *"${INTERFACE}.${METHOD}"* ]] && [[ "$line" == *"${DBUS_PATH}"* ]]; then 16 | echo "$line" 17 | kill "$PID" 18 | break 19 | fi 20 | if [[ "$line" == *"Error"* ]]; then 21 | ((exit_code = 1)) 22 | kill "$PID" 23 | break 24 | fi 25 | done 26 | rm -f "$TMPFILE" 27 | exit "$exit_code" 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/contents/ui/tools/list_presets.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | PRESETS_DIR="$1" 4 | BUILTIN="$2" 5 | 6 | find "$PRESETS_DIR" -mindepth 1 -prune -type d -print0 | while IFS= read -r -d '' preset; do 7 | if [[ -n $BUILTIN ]]; then 8 | echo "b:$preset" 9 | else 10 | echo "u:$preset" 11 | fi 12 | done | sort 13 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/luisbocanegra.panel.colorizer/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Applet", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "luisbocanegra17b@gmail.com", 7 | "Name": "Luis Bocanegra" 8 | } 9 | ], 10 | "BugReportUrl": "https://github.com/luisbocanegra/plasma-panel-colorizer/issues", 11 | "Category": "Utilities", 12 | "Description": "Latte-Dock and WM status bar customization features for the default Plasma panel", 13 | "Description[de]": "Latte-Dock und WM Statusbar individuelle Anpassungen für die Plasmakontrollleiste", 14 | "Description[nl]": "Aanpassingsmogelijkheden voor het standaard Plasma-paneel, gebaseerd op die van Latte-Dock en WM-statusbalk", 15 | "Description[zh]": "为默认 Plasma 面板提供 Latte-Dock 和窗口管理器状态栏的自定义功能", 16 | "EnabledByDefault": false, 17 | "Icon": "desktop", 18 | "Id": "luisbocanegra.panel.colorizer", 19 | "License": "GPL-3.0", 20 | "Name": "Panel colorizer", 21 | "Name[de]": "Panel Colorizer", 22 | "Name[nl]": "Paneelkleuring", 23 | "Name[zh]": "Panel colorizer", 24 | "Version": "4.2.0", 25 | "Website": "https://github.com/luisbocanegra/plasma-panel-colorizer" 26 | }, 27 | "X-Plasma-API-Minimum-Version": "6.0" 28 | } 29 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.latte.separator/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### CHANGELOG 2 | 3 | #### Version 0.1.1 4 | 5 | * fix startup warning 6 | 7 | #### Version 0.1 8 | 9 | * option for thickness margins 10 | * option for length margins 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.latte.separator/README.md: -------------------------------------------------------------------------------- 1 | # Latte Separator 2 | 3 | This is a Plasma 5 applet that acts as a separator between applets. This plasmoid is coming from [Latte land](https://phabricator.kde.org/source/latte-dock/repository/master/) but it can also support Plasma panels. 4 | 5 |

6 |
7 | Latte Separators between window icon, title and application menu 8 |

9 | 10 |

11 |
12 | Appearance Settings 13 |

14 | 15 | # Requires 16 | 17 | - Plasma >= 5.8 18 | 19 | # Install 20 | 21 | This is a QML applet and as such it can be easily installed from Plasma 5 Widgets Explorer or alternative you can execute `plasmapkg2 -i .` in the root directory of the applet. 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.latte.separator/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 Smith AR 3 | * Michail Vourlakos 4 | * 5 | * This file is part of Latte-Dock 6 | * 7 | * Latte-Dock is free software; you can redistribute it and/or 8 | * modify it under the terms of the GNU General Public License as 9 | * published by the Free Software Foundation; either version 2 of 10 | * the License, or (at your option) any later version. 11 | * 12 | * Latte-Dock is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this program. If not, see . 19 | */ 20 | 21 | import QtQuick 22 | 23 | import org.kde.plasma.configuration 24 | 25 | ConfigModel { 26 | ConfigCategory { 27 | name: i18n("Appearance") 28 | icon: "preferences-desktop-display-color" 29 | source: "ConfigAppearance.qml" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.latte.separator/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 3 12 | 13 | 14 | 15 | 2 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 0 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.latte.separator/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "mvourlakos@gmail.com", 6 | "Name": "Michail Vourlakos" 7 | } 8 | ], 9 | "Category": "Utilities", 10 | "Description": "For all your separation tasks", 11 | "Icon": "filename-divider", 12 | "Id": "org.kde.latte.separator", 13 | "License": "GPLv2", 14 | "Name": "Latte Separator", 15 | "Version": "0.1.1", 16 | "Website": "https://github.com/psifidotos/applet-latte-separator" 17 | }, 18 | "Keywords": "separator", 19 | "X-Plasma-API-Minimum-Version": "6.0", 20 | "KPackageStructure": "Plasma/Applet" 21 | } 22 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.netspeedWidget/contents/code/utils.js: -------------------------------------------------------------------------------- 1 | const NET_DATA_SOURCE = 2 | "awk -v OFS=, 'NR > 2 { print substr($1, 1, length($1)-1), $2, $10 }' /proc/net/dev"; 3 | 4 | function parseTransferData(data) { 5 | const transferData = {}; 6 | 7 | for (const line of data.trim("\n").split("\n")) { 8 | const [name, rx, tx] = line.split(","); 9 | 10 | if (name === "lo") { 11 | continue; 12 | } 13 | 14 | transferData[name] = { rx, tx }; 15 | } 16 | 17 | return transferData; 18 | } 19 | 20 | function calcSpeedData(prevTransferData, nextTransferData, duration) { 21 | const speedData = {}; 22 | 23 | for (const key in nextTransferData) { 24 | if (prevTransferData && key in prevTransferData) { 25 | const prev = prevTransferData[key]; 26 | const next = nextTransferData[key]; 27 | speedData[key] = { 28 | down: ((next.rx - prev.rx) * 1000) / duration, 29 | up: ((next.tx - prev.tx) * 1000) / duration, 30 | downTotal: nextTransferData[key].rx, 31 | upTotal: nextTransferData[key].tx, 32 | }; 33 | } 34 | } 35 | 36 | return speedData; 37 | } 38 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.netspeedWidget/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.2 2 | import org.kde.plasma.configuration 2.0 3 | 4 | ConfigModel { 5 | ConfigCategory { 6 | name: i18n('General') 7 | icon: 'preferences-desktop-color' 8 | source: 'config/ConfigGeneral.qml' 9 | } 10 | ConfigCategory { 11 | name: i18n('Advanced') 12 | icon: 'preferences-desktop-launch-feedback' 13 | source: 'config/ConfigAdvanced.qml' 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.netspeedWidget/contents/ui/Launcher.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.5 2 | import org.kde.plasma.private.quicklaunch 1.0 3 | 4 | Item { 5 | Logic { 6 | id: kRun 7 | } 8 | 9 | function launch(url) { 10 | kRun.openUrl(url) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.netspeedWidget/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "hessijames@gmail.com", 6 | "Name": "Daniel Faust" 7 | } 8 | ], 9 | "Category": "System Information", 10 | "Description": "Displays the currently used network bandwidth", 11 | "Icon": "network-connect", 12 | "Id": "org.kde.netspeedWidget", 13 | "License": "GPL2", 14 | "Name": "Netspeed Widget", 15 | "KPackageStructure": [ 16 | "Plasma/Applet" 17 | ], 18 | "Version": "3.1", 19 | "Website": "https://github.com/dfaust/plasma-applet-netspeed-widget" 20 | }, 21 | "X-KDE-ParentApp": "", 22 | "X-Plasma-API-Minimum-Version": "6.0", 23 | "X-Plasma-MainScript": "ui/main.qml", 24 | "X-Plasma-RemoteLocation": "", 25 | "KPackageStructure": "Plasma/Applet" 26 | } 27 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.plasma.shutdownorswitch/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2015 Kai Uwe Broulik 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 5 | */ 6 | 7 | import org.kde.plasma.configuration 2.0 8 | 9 | ConfigModel { 10 | ConfigCategory { 11 | name: i18nc("@title", "General") 12 | icon: "preferences-desktop-user" 13 | source: "configGeneral.qml" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.plasma.shutdownorswitch/contents/ui/ActionListDelegate.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 ivan (@ratijas) tkachenko 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | import org.kde.kirigami 2.20 as Kirigami 10 | 11 | ListDelegate { 12 | id: item 13 | 14 | activeFocusOnTab: true 15 | 16 | iconItem: Kirigami.Icon { 17 | anchors.fill: parent 18 | source: item.icon.name 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.plasma.shutdownorswitch/contents/ui/UserListDelegate.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 ivan (@ratijas) tkachenko 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 8 | import QtQml 9 | 10 | import org.kde.config as KConfig 11 | import org.kde.kcmutils as KCMUtils 12 | import org.kde.kirigami as Kirigami 13 | import org.kde.kirigamiaddons.components as KirigamiComponents 14 | 15 | ListDelegate { 16 | id: item 17 | 18 | property alias source: avatar.source 19 | 20 | iconItem: KirigamiComponents.AvatarButton { 21 | id: avatar 22 | 23 | anchors.fill: parent 24 | 25 | name: item.text 26 | 27 | // don't block mouse hover from the underlying ListView highlight 28 | enabled: KConfig.KAuthorized.authorizeControlModule("kcm_users") 29 | 30 | onClicked: KCMUtils.KCMLauncher.openSystemSettings("kcm_users") 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/org.kde.plasma.shutdownorswitch/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Applet", 3 | "KPlugin": { 4 | "Authors": [ 5 | { 6 | "Email": "kde@privat.broulik.de", 7 | "Name": "Kai Uwe Broulik" 8 | }, 9 | { 10 | "Email": "sandona.davide@gmail.com", 11 | "Name": "Davide Sandona'" 12 | } 13 | ], 14 | "Category": "System Information", 15 | "Description": "Quickly switch between different users and access shutdown options", 16 | "Description[en-GB]": "Quickly switch between different users and access shutdown options", 17 | "Description[it]": "Accedi alle opzioni di spegnimento o di cambio utente", 18 | "Description[nl]": "Wissel snel van gebruiker of kies één van de afsluitopties", 19 | "Icon": "system-shutdown", 20 | "Id": "org.kde.plasma.shutdownorswitch", 21 | "License": "GPL-2.0+", 22 | "Name": "Shutdown or Switch", 23 | "Name[en_GB]": "Shutdown or Switch", 24 | "Name[it]": "Spegni o cambia utente", 25 | "Name[nl]": "Afsluiten of gebruiker wisselen", 26 | "ServiceTypes": [ 27 | "Plasma/Applet" 28 | ], 29 | "Version": "1.1.1", 30 | "Website": "https://github.com/Davide-sd/shutdown_or_switch" 31 | }, 32 | "X-Plasma-API-Minimum-Version": "6.0" 33 | } 34 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/contents/config/config.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.12 2 | import org.kde.plasma.configuration 2.0 3 | 4 | ConfigModel { 5 | ConfigCategory { 6 | name: i18n("General") 7 | icon: "preferences-desktop" 8 | source: "GeneralConfig.qml" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | false 12 | 13 | 14 | 10 15 | 16 | 17 | 90 18 | 19 | 20 | #ffffff 21 | 22 | 23 | 1 24 | 25 | 26 | 40 27 | 28 | 29 | false 30 | 31 | 32 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/contents/locale/es/LC_MESSAGES/plasma_applet_zayron.simple.separator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/contents/locale/es/LC_MESSAGES/plasma_applet_zayron.simple.separator.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=simple separator 3 | 4 | Type=Service 5 | Icon=configure 6 | X-KDE-ServiceTypes=Plasma/Applet 7 | 8 | X-Plasma-API=declarativeappletscript 9 | X-Plasma-MainScript=ui/main.qml 10 | X-KDE-PluginInfo-Name=zayron.simple.separator 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "adolfo@librepixels.com", 6 | "Name": "zayronxio" 7 | } 8 | ], 9 | "Name": "simple separator", 10 | "Id": "zayron.simple.separator", 11 | "Description": "a simple separator", 12 | "Category": "Utilities", 13 | "Icon": "setting", 14 | "EnabledByDefault": true, 15 | "License": "GPL-3.0+", 16 | "ServiceTypes": [ 17 | "Plasma/Applet" 18 | ], 19 | "Version": "1.3.2", 20 | "Website": "https://store.kde.org/p/2137418" 21 | }, 22 | "X-Plasma-API-Minimum-Version": "6.0", 23 | "X-Plasma-MainScript": "ui/main.qml", 24 | "KPackageStructure": "Plasma/Applet" 25 | } 26 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/translate/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Simple Separator in Spanish 2 | # Copyright (C) 2025 3 | # This file is distributed under the same license as the zayron.simple.separator package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: zayron.simple.separator\n" 9 | "Report-Msgid-Bugs-To: https://store.kde.org/p/2137418/\n" 10 | "POT-Creation-Date: 2023-05-01 16:59-0300\n" 11 | "PO-Revision-Date: 2025-05-27 00:00+0000\n" 12 | "Last-Translator: adolfo \n" 13 | "Language-Team: Español \n" 14 | "Language: es\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: ../contents/ui/GeneralConfig.qml 20 | msgid "Single point mode:" 21 | msgstr "Modo de punto único:" 22 | 23 | #: ../contents/ui/GeneralConfig.qml 24 | msgid "Margin length:" 25 | msgstr "Longitud del margen:" 26 | 27 | #: ../contents/ui/GeneralConfig.qml 28 | msgid "Separator length (percentage):" 29 | msgstr "Longitud del separador (porcentaje):" 30 | 31 | #: ../contents/ui/GeneralConfig.qml 32 | msgid "Thickness:" 33 | msgstr "Grosor:" 34 | 35 | #: ../contents/ui/GeneralConfig.qml 36 | msgid "Custom Color:" 37 | msgstr "Color personalizado:" 38 | 39 | #: ../contents/ui/GeneralConfig.qml 40 | msgid "Opacity:" 41 | msgstr "Opacidad:" 42 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/plasmoids/zayron.simple.separator/translate/template.pot: -------------------------------------------------------------------------------- 1 | # Translation of Simple Separator in LANGUAGE 2 | # Copyright (C) 2025 3 | # This file is distributed under the same license as the zayron.simple.separator package. 4 | # ADOLFO , 2025. 5 | #, fuzzy 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: zayron.simple.separator\n" 9 | "Report-Msgid-Bugs-To: https://store.kde.org/p/2137418/\n" 10 | "POT-Creation-Date: 2023-05-01 16:59-0300\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | 20 | #: ../contents/ui/GeneralConfig.qml 21 | msgid "Single point mode:" 22 | msgstr "" 23 | 24 | #: ../contents/ui/GeneralConfig.qml 25 | msgid "Margin length:" 26 | msgstr "" 27 | 28 | #: ../contents/ui/GeneralConfig.qml 29 | msgid "Separator length (percentage):" 30 | msgstr "" 31 | 32 | #: ../contents/ui/GeneralConfig.qml 33 | msgid "Thickness:" 34 | msgstr "" 35 | 36 | #: ../contents/ui/GeneralConfig.qml 37 | msgid "Custom Color:" 38 | msgstr "" 39 | 40 | #: ../contents/ui/GeneralConfig.qml 41 | msgid "Opacity:" 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/at.lehklu.plasma.vallpaper6/contents/config/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/at.lehklu.plasma.vallpaper6/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPackageStructure": "Plasma/Wallpaper", 3 | "KPlugin": { 4 | "Name": "Vallpaper 6.0.0", 5 | "Description": "Slideshow wallpaper for virtual desktops", 6 | "Version": "6.0.0", 7 | "Id": "at.lehklu.plasma.vallpaper6", 8 | "Icon": "preferences-desktop-wallpaper", 9 | "Authors": [ 10 | { 11 | "Email": "werner.lechner@lehklu.at", 12 | "Name": "Werner Lechner" 13 | } 14 | ], 15 | "Category": "Utilities", 16 | "License": "GPL-2.0+" 17 | }, 18 | "X-KDE-ParentApp": "org.kde.plasmashell", 19 | "X-Plasma-API-Minimum-Version": "6.0" 20 | } 21 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/el_GR/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/el_GR/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/es/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/es/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/nl/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/nl/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/ru/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/locale/ru/LC_MESSAGES/plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn.mo -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/ui/VideoPlayer.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtMultimedia 3 | 4 | Item { 5 | id: root 6 | property real volume: 1.0 7 | property int actualDuration: player.duration / playbackRate 8 | property alias source: player.source 9 | property alias muted: audioOutput.muted 10 | property alias playbackRate: player.playbackRate 11 | property alias fillMode: videoOutput.fillMode 12 | property alias loops: player.loops 13 | property alias position: player.position 14 | readonly property alias mediaStatus: player.mediaStatus 15 | readonly property alias playing: player.playing 16 | readonly property alias seekable: player.seekable 17 | readonly property alias duration: player.duration 18 | 19 | function play() { 20 | player.play(); 21 | } 22 | function pause() { 23 | player.pause(); 24 | } 25 | function stop() { 26 | player.stop(); 27 | } 28 | 29 | VideoOutput { 30 | id: videoOutput 31 | fillMode: VideoOutput.PreserveAspectCrop 32 | anchors.fill: parent 33 | } 34 | 35 | AudioOutput { 36 | id: audioOutput 37 | volume: root.opacity * root.volume 38 | } 39 | 40 | MediaPlayer { 41 | id: player 42 | videoOutput: videoOutput 43 | audioOutput: audioOutput 44 | loops: root.loops 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/ui/code/enum.js: -------------------------------------------------------------------------------- 1 | const PlaybackOverride = { 2 | Play: 0, 3 | Pause: 1, 4 | Default: 2, 5 | }; 6 | 7 | const MuteOverride = { 8 | Mute: 0, 9 | Unmute: 1, 10 | Default: 2, 11 | }; 12 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/plasma/wallpapers/luisbocanegra.smart.video.wallpaper.reborn/contents/ui/tools/gdbus_get_signal.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Waits for and returns the first message generated by a given service, interface path method 4 | 5 | BUS_TYPE=${1} 6 | SERVICE=${2} 7 | INTERFACE=${3} 8 | DBUS_PATH=${4} 9 | METHOD=${5} 10 | TMPFILE=$(mktemp) 11 | gdbus monitor --"${BUS_TYPE}" --dest "${SERVICE}" >"$TMPFILE" & 12 | PID=$! 13 | exit_code=130 14 | tail -f "$TMPFILE" | while IFS= read -r line; do 15 | if [[ "$line" == *"${INTERFACE}.${METHOD}"* ]] && [[ "$line" == *"${DBUS_PATH}"* ]]; then 16 | echo "$line" 17 | kill "$PID" 18 | break 19 | fi 20 | if [[ "$line" == *"Error"* ]]; then 21 | ((exit_code = 1)) 22 | kill "$PID" 23 | break 24 | fi 25 | done 26 | rm -f "$TMPFILE" 27 | exit "$exit_code" 28 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/AUTHORS: -------------------------------------------------------------------------------- 1 | ------------------------ Ark Dark Yakuake Skin ------------------------ 2 | 3 | Sources: 4 | https://github.com/horst3180/Arc-theme 5 | 6 | CUSTOMIZER: 7 | Alexey Varfolomeev - https://github.com/varlesh/Arc-Dark-KDE 8 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/icon.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs.skin: -------------------------------------------------------------------------------- 1 | [Description] 2 | Skin=Arc Dark 3 | Author=Alexey Varfolomeev 4 | Email=varlesh@gmail.com 5 | Web=https://github.com/varlesh/Arc-Dark-KDE 6 | Icon=/icon.png 7 | 8 | [Tabs] 9 | x=19 10 | y=0 11 | red=148 12 | green=151 13 | blue=159 14 | separator_image=/tabs/separator_tr.png 15 | selected_background=/tabs/back_tr.png 16 | selected_left_corner=/tabs/separator_tr.png 17 | selected_right_corner=/tabs/separator_tr.png 18 | unselected_background=/tabs/back_tr.png 19 | 20 | [Background] 21 | back_image=/tabs/back_tr.png 22 | left_corner=/tabs/left_tr.png 23 | right_corner=/tabs/right_tr.png 24 | 25 | [PlusButton] 26 | x=3 27 | y=3 28 | up_image=/tabs/plus_up_tr.png 29 | over_image=/tabs/plus_over_tr.png 30 | down_image=/tabs/plus_down_tr.png 31 | 32 | [MinusButton] 33 | x=17 34 | y=3 35 | up_image=/tabs/minus_up_tr.png 36 | over_image=/tabs/minus_over_tr.png 37 | down_image=/tabs/minus_down_tr.png 38 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/back_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/back_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/left_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/left_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_down_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_down_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_over_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_over_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_up_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/minus_up_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_down_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_down_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_over_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_over_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_up_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/plus_up_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/right_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/right_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/separator_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/tabs/separator_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title.skin: -------------------------------------------------------------------------------- 1 | [Description] 2 | Skin=Arc Dark 3 | Author=Alexey Varfolomeev 4 | Email=varlesh@gmail.com 5 | Web=https://github.com/varlesh/Arc-Dark-KDE 6 | Icon=/icon.png 7 | 8 | [Border] 9 | red=46 10 | green=51 11 | blue=64 12 | width=0 13 | 14 | [Text] 15 | x=3 16 | y=18 17 | red=147 18 | green=150 19 | blue=158 20 | text= 21 | bold=true 22 | 23 | [Background] 24 | back_image=/title/back_tr.png 25 | left_corner=/title/left_tr.png 26 | right_corner=/title/right_tr.png 27 | 28 | [FocusButton] 29 | x=71 30 | y=6 31 | up_image=/title/focus_up.png 32 | over_image=/title/focus_over.png 33 | down_image=/title/focus_down.png 34 | 35 | [ConfigButton] 36 | x=47 37 | y=6 38 | up_image=/title/config_up.png 39 | over_image=/title/config_over.png 40 | down_image=/title/config_down.png 41 | 42 | [QuitButton] 43 | x=23 44 | y=6 45 | up_image=/title/quit_up.png 46 | over_image=/title/quit_over.png 47 | down_image=/title/quit_down.png 48 | -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/back_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/back_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_down.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_over.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/config_up.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_down.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_over.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/focus_up.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/left_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/left_tr.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_down.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_over.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/quit_up.png -------------------------------------------------------------------------------- /Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/right_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/Home/.local/share/yakuake/kns_skins/arc-dark/title/right_tr.png -------------------------------------------------------------------------------- /Configs/System/etc/sddm.conf.d/kde_settings.conf: -------------------------------------------------------------------------------- 1 | [Autologin] 2 | Relogin=false 3 | Session= 4 | User= 5 | 6 | [General] 7 | Numlock=on 8 | HaltCommand=/usr/bin/systemctl poweroff 9 | RebootCommand=/usr/bin/systemctl reboot 10 | 11 | [Theme] 12 | Current=XeroDark 13 | 14 | [Users] 15 | MaximumUid=60513 16 | MinimumUid=1000 17 | -------------------------------------------------------------------------------- /Configs/System/usr/share/Kvantum/kvantum.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=LayanDark 3 | -------------------------------------------------------------------------------- /Configs/System/usr/share/logos/xero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/System/usr/share/logos/xero.png -------------------------------------------------------------------------------- /Configs/System/usr/share/pixmaps/xerolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/System/usr/share/pixmaps/xerolinux.png -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT `find . -name \*.qml` -L Java -o $podir/plasma-desktop-sddm-theme.pot 3 | -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/System/usr/share/sddm/themes/XeroDark/bg.png -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/faces/.face.icon: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/metadata.desktop: -------------------------------------------------------------------------------- 1 | [SddmGreeterTheme] 2 | Name=XeroDark 3 | Description=XeroDark 4 | Author=XeroLinux Design Group 5 | Copyright=(c) 2024, DarkXero 6 | License=CC-BY-SA 7 | Type=sddm-theme 8 | Version=1.0 9 | Website=https://github.com/sddm/sddm 10 | Screenshot=preview.png 11 | MainScript=Main.qml 12 | ConfigFile=theme.conf 13 | TranslationsDirectory=translations 14 | Email=info@techxero.com 15 | Theme-Id=XeroDark 16 | Theme-API=2.0 17 | QtVersion=6 18 | -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/Configs/System/usr/share/sddm/themes/XeroDark/preview.png -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/theme.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | showlogo=hidden 3 | logo=/usr/share/sddm/themes/XeroDark/default-logo.svg 4 | type=image 5 | color=#1d99f3 6 | fontSize=10 7 | background=/usr/share/LayanWall/XeroLayanWallpaper.png 8 | needsFullUserModel=false 9 | -------------------------------------------------------------------------------- /Configs/System/usr/share/sddm/themes/XeroDark/theme.conf.user: -------------------------------------------------------------------------------- 1 | [General] 2 | background=bg.png 3 | type=image 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This is XeroLinux's Layan Rice 2 | 3 | ### Disclaimer 4 | 5 | I would like to clarify one very important aspect of ricing. We use custom themes, and those might not get updated very often, if at all by their respective developers/artists, which might result in some parts of the system and apps not to get themed correctly. That, my friends, is unfortunately out of our hands. 6 | 7 |
8 | 9 | # [.:: Click & Follow the Wiki ::.](https://wiki.xerolinux.xyz/rices/) 10 | 11 |
12 | 13 | ![XeroLayan](https://i.imgur.com/VA2tycb.jpeg) 14 | -------------------------------------------------------------------------------- /XeroLayan/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/background.png -------------------------------------------------------------------------------- /XeroLayan/icons/4MLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/4MLinux.png -------------------------------------------------------------------------------- /XeroLayan/icons/AlpineLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/AlpineLinux.png -------------------------------------------------------------------------------- /XeroLayan/icons/Manjaro.i686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/Manjaro.i686.png -------------------------------------------------------------------------------- /XeroLayan/icons/Manjaro.x86_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/Manjaro.x86_64.png -------------------------------------------------------------------------------- /XeroLayan/icons/SystemRescueCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/SystemRescueCD.png -------------------------------------------------------------------------------- /XeroLayan/icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/android.png -------------------------------------------------------------------------------- /XeroLayan/icons/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/anonymous.png -------------------------------------------------------------------------------- /XeroLayan/icons/antergos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/antergos.png -------------------------------------------------------------------------------- /XeroLayan/icons/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/arch.png -------------------------------------------------------------------------------- /XeroLayan/icons/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/archlinux.png -------------------------------------------------------------------------------- /XeroLayan/icons/arcolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/arcolinux.png -------------------------------------------------------------------------------- /XeroLayan/icons/artix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/artix.png -------------------------------------------------------------------------------- /XeroLayan/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/cancel.png -------------------------------------------------------------------------------- /XeroLayan/icons/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/centos.png -------------------------------------------------------------------------------- /XeroLayan/icons/chakra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/chakra.png -------------------------------------------------------------------------------- /XeroLayan/icons/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/debian.png -------------------------------------------------------------------------------- /XeroLayan/icons/deepin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/deepin.png -------------------------------------------------------------------------------- /XeroLayan/icons/devuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/devuan.png -------------------------------------------------------------------------------- /XeroLayan/icons/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/driver.png -------------------------------------------------------------------------------- /XeroLayan/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/edit.png -------------------------------------------------------------------------------- /XeroLayan/icons/efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/efi.png -------------------------------------------------------------------------------- /XeroLayan/icons/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/elementary.png -------------------------------------------------------------------------------- /XeroLayan/icons/endeavouros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/endeavouros.png -------------------------------------------------------------------------------- /XeroLayan/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/fedora.png -------------------------------------------------------------------------------- /XeroLayan/icons/find.efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/find.efi.png -------------------------------------------------------------------------------- /XeroLayan/icons/find.none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/find.none.png -------------------------------------------------------------------------------- /XeroLayan/icons/freebsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/freebsd.png -------------------------------------------------------------------------------- /XeroLayan/icons/garuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/garuda.png -------------------------------------------------------------------------------- /XeroLayan/icons/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/gentoo.png -------------------------------------------------------------------------------- /XeroLayan/icons/gnu-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/gnu-linux.png -------------------------------------------------------------------------------- /XeroLayan/icons/haiku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/haiku.png -------------------------------------------------------------------------------- /XeroLayan/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/help.png -------------------------------------------------------------------------------- /XeroLayan/icons/kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/kali.png -------------------------------------------------------------------------------- /XeroLayan/icons/kaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/kaos.png -------------------------------------------------------------------------------- /XeroLayan/icons/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/kbd.png -------------------------------------------------------------------------------- /XeroLayan/icons/korora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/korora.png -------------------------------------------------------------------------------- /XeroLayan/icons/kubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/kubuntu.png -------------------------------------------------------------------------------- /XeroLayan/icons/lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/lang.png -------------------------------------------------------------------------------- /XeroLayan/icons/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/lfs.png -------------------------------------------------------------------------------- /XeroLayan/icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/linux.png -------------------------------------------------------------------------------- /XeroLayan/icons/linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/linuxmint.png -------------------------------------------------------------------------------- /XeroLayan/icons/lubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/lubuntu.png -------------------------------------------------------------------------------- /XeroLayan/icons/macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/macosx.png -------------------------------------------------------------------------------- /XeroLayan/icons/mageia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/mageia.png -------------------------------------------------------------------------------- /XeroLayan/icons/manjaro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/manjaro.png -------------------------------------------------------------------------------- /XeroLayan/icons/mate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/mate.png -------------------------------------------------------------------------------- /XeroLayan/icons/memtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/memtest.png -------------------------------------------------------------------------------- /XeroLayan/icons/mx-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/mx-linux.png -------------------------------------------------------------------------------- /XeroLayan/icons/neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/neon.png -------------------------------------------------------------------------------- /XeroLayan/icons/opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/opensuse.png -------------------------------------------------------------------------------- /XeroLayan/icons/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/parrot.png -------------------------------------------------------------------------------- /XeroLayan/icons/pop-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/pop-os.png -------------------------------------------------------------------------------- /XeroLayan/icons/pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/pop.png -------------------------------------------------------------------------------- /XeroLayan/icons/recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/recovery.png -------------------------------------------------------------------------------- /XeroLayan/icons/regolith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/regolith.png -------------------------------------------------------------------------------- /XeroLayan/icons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/restart.png -------------------------------------------------------------------------------- /XeroLayan/icons/rocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/rocky.png -------------------------------------------------------------------------------- /XeroLayan/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/shutdown.png -------------------------------------------------------------------------------- /XeroLayan/icons/siduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/siduction.png -------------------------------------------------------------------------------- /XeroLayan/icons/slackware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/slackware.png -------------------------------------------------------------------------------- /XeroLayan/icons/solus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/solus.png -------------------------------------------------------------------------------- /XeroLayan/icons/steamos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/steamos.png -------------------------------------------------------------------------------- /XeroLayan/icons/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/type.png -------------------------------------------------------------------------------- /XeroLayan/icons/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/tz.png -------------------------------------------------------------------------------- /XeroLayan/icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/ubuntu.png -------------------------------------------------------------------------------- /XeroLayan/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/unknown.png -------------------------------------------------------------------------------- /XeroLayan/icons/unset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/unset.png -------------------------------------------------------------------------------- /XeroLayan/icons/ventoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/ventoy.png -------------------------------------------------------------------------------- /XeroLayan/icons/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/void.png -------------------------------------------------------------------------------- /XeroLayan/icons/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/windows.png -------------------------------------------------------------------------------- /XeroLayan/icons/windows11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/windows11.png -------------------------------------------------------------------------------- /XeroLayan/icons/xero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/xero.png -------------------------------------------------------------------------------- /XeroLayan/icons/xerolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/xerolinux.png -------------------------------------------------------------------------------- /XeroLayan/icons/xubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/xubuntu.png -------------------------------------------------------------------------------- /XeroLayan/icons/zorin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/icons/zorin.png -------------------------------------------------------------------------------- /XeroLayan/select_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/select_c.png -------------------------------------------------------------------------------- /XeroLayan/select_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/select_e.png -------------------------------------------------------------------------------- /XeroLayan/select_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/select_w.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_c.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_e.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_n.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_ne.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_nw.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_s.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_se.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_sw.png -------------------------------------------------------------------------------- /XeroLayan/terminal_box_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminal_box_w.png -------------------------------------------------------------------------------- /XeroLayan/terminus-12.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminus-12.pf2 -------------------------------------------------------------------------------- /XeroLayan/terminus-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminus-14.pf2 -------------------------------------------------------------------------------- /XeroLayan/terminus-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminus-16.pf2 -------------------------------------------------------------------------------- /XeroLayan/terminus-18.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/terminus-18.pf2 -------------------------------------------------------------------------------- /XeroLayan/theme.txt: -------------------------------------------------------------------------------- 1 | # Main options 2 | title-text: "" 3 | desktop-image: "background.png" 4 | desktop-color: "#000000" 5 | terminal-font: "Terminus Regular 14" 6 | terminal-box: "terminal_box_*.png" 7 | terminal-left: "0" 8 | terminal-top: "0" 9 | terminal-width: "100%" 10 | terminal-height: "100%" 11 | terminal-border: "0" 12 | 13 | # Boot menu 14 | + boot_menu { 15 | left = 21% 16 | top = 43% 17 | width = 55% 18 | height = 65% 19 | item_font = "Ubuntu Regular 20" 20 | item_color = "#cccccc" 21 | selected_item_color = "#ffffff" 22 | icon_width = 36 23 | icon_height = 36 24 | item_icon_space = 20 25 | item_height = 40 26 | item_padding = 2 27 | item_spacing = 10 28 | selected_item_pixmap_style = "select_*.png" 29 | } 30 | 31 | 32 | # Countdown label 33 | # You can change the name of default starting OS here 34 | + label { 35 | left = 43% 36 | top = 39% 37 | align = "center" 38 | id = "__timeout__" 39 | text = "Selected OS will start in %d seconds" 40 | color = "#cccccc" 41 | font = "Ubuntu Regular 17" 42 | } 43 | -------------------------------------------------------------------------------- /XeroLayan/ubuntu_regular_17.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/ubuntu_regular_17.pf2 -------------------------------------------------------------------------------- /XeroLayan/ubuntu_regular_20.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerolinux/xero-layan-git/1b0313c18c385657fa02da97129df7ce10ceb6e7/XeroLayan/ubuntu_regular_20.pf2 --------------------------------------------------------------------------------