first commit

This commit is contained in:
SomeElse
2026-04-24 02:14:35 +00:00
commit 5f3b357344
20 changed files with 3205 additions and 0 deletions

87
config/config.qml Normal file
View File

@@ -0,0 +1,87 @@
pragma Singleton
import QtQuick
import Quickshell
import "themes"
QtObject {
id: root
readonly property var theme: Everforest
// ────────────────────────────────────────────────────────────────────────
// Widgets
// ────────────────────────────────────────────────────────────────────────
property bool enableBgDate: true
// ────────────────────────────────────────────────────────────────────────
// BAR
// ────────────────────────────────────────────────────────────────────────
// ── Position & Dimensions ─────────────────────────────────────────────────
property string barPosition: "bottom"
property int barHeight: 37
property int margin: 20
property int radius: 26
// ── Module Lists ──────────────────────────────────────────────────────────
property var leftModules: ["ArchLogo", "Stats"]
property var centerModules: ["Workspace"]
property var rightModules: ["Tray", "Notifications", "Volume", "Clock"]
// ── Arch Logo ─────────────────────────────────────────────────────────────
property int logoIconSize: 22 // icon font size; container width scales with it
property string logoIcon: "󱄅" // Nerd Font glyph for the logo
// ── Panel Styling ─────────────────────────────────────────────────────────
property int panelBorderWidth: 1
property int moduleSpacing: 2 // space between modules within a panel
property int panelSpacing: 12 // gap between left / center / right panels
property int moduleHeight: 32 // default chip height for bar modules
// ── Popup Styling ─────────────────────────────────────────────────────────
property int popupRadius: 18
property int popupBorderWidth: 1
property int popupAnimDuration: 500
// ── Tray Styling ─────────────────────────────────────────────────────────
property int trayHeight: 26
property int trayIconSize: 20
// ── Stats Styling ─────────────────────────────────────────────────────────
property int statsRingSize: 25
property int statsRingFontSize: 10
property bool statsShowPercentByDefault: true
// ── Volume Module ─────────────────────────────────────────────────────────
property int volumeIconSize: 20
property int volumeSliderHeight: 4
property int volumeHandleSize: 20
property int volumePopupWidth: 280
property int volumeOutputMax: 100
property int volumeInputMax: 200
// ────────────────────────────────────────────────────────────────────────
// FRAME
// ────────────────────────────────────────────────────────────────────────
property int frameBorderWidth: 1
// ────────────────────────────────────────────────────────────────────────
// NOTIFICATIONS
// ────────────────────────────────────────────────────────────────────────
property string notificationPosition: "topright"
property int notificationHistorySize: 50
// ── Toast timeouts (milliseconds) ─────────────────────────────────────────
property int notifTimeoutLow: 3500
property int notifTimeoutNormal: 5000
property int notifTimeoutCritical: 0
property int notifIconSize: 18
// ────────────────────────────────────────────────────────────────────────
// LAUNCHER
// ────────────────────────────────────────────────────────────────────────
property string launcherScript: Quickshell.env("HOME") + "/.config/quickshell/launcher/launcher.sh"
property string launcherCacheDir: "/tmp/qs_launcher"
}

3
config/qmldir Normal file
View File

@@ -0,0 +1,3 @@
module config
singleton Config 1.0 config.qml

View File

@@ -0,0 +1,159 @@
pragma Singleton
import QtQuick
import Quickshell
QtObject {
id: theme
// ── Wallpaper ──────────────────────────────────────────────────────────────
readonly property string wallpaper: Quickshell.env("HOME") + "/.config/quickshell/wallpaper.jpg"
// ── Base Backgrounds ───────────────────────────────────────────────────────
readonly property color bg: "#aa0a1410"
readonly property color bgPanel: "transparent"
readonly property color bgPopup: bg
readonly property color bgFrame: bg
// ── Separators ────────────────────────────────────────────────────────────
readonly property color separator: "#33ffffff"
// ── Text ──────────────────────────────────────────────────────────────────
readonly property color textMain: "#ffdce3de"
readonly property color textDim: "#d97a9480"
readonly property color todayText: "#ffffffff"
// ── Accent & Borders ──────────────────────────────────────────────────────
readonly property color accent: "#ff4a8c5c"
readonly property color border: "transparent"
readonly property color borderPopup: "#ff2d4032"
readonly property color borderToday: accent
// ── ArchLogo Module ────────────────────────────────────────────────────────
readonly property color archLogoBg: bgPanel
readonly property color archLogoBgHover: "#22ffffff"
readonly property color archLogoHover: accent
readonly property color archLogoBorder: border
readonly property color archLogoBorderActive: accent
readonly property color archLogoIcon: textMain
readonly property color archLogoIconActive: accent
// ── Stats Module ───────────────────────────────────────────────────────────
readonly property color statsBg: bgPanel
readonly property color statsBorder: border
readonly property color statsText: textMain
readonly property color statsRingColor: "#ff83c092"
readonly property color statsCpuColor: statsRingColor
readonly property color statsMemColor: statsRingColor
readonly property color statsDiskColor: statsRingColor
readonly property color statsGpuColor: statsRingColor
readonly property color statsTrackColor: "#28ffffff"
// ── Volume Module ──────────────────────────────────────────────────────────
readonly property color volBg: bgPanel
readonly property color volBgHover: "#22ffffff"
readonly property color volBorder: border
readonly property color volBorderHover: accent
readonly property color volPopupBg: bgPopup
readonly property color volPopupBorder: borderPopup
readonly property color volIcon: textMain
readonly property color volIconMuted: textDim
readonly property color volTrack: "#22ffffff"
readonly property color volHandle: accent
readonly property color volHandleBorder: "#33ffffff"
readonly property color volMuteBg: "#22ffffff"
readonly property color volPickerHover: "#15ffffff"
// ── Clock Module ───────────────────────────────────────────────────────────
readonly property color clockBg: bgPanel
readonly property color clockBgHover: "#22ffffff"
readonly property color clockBorder: border
readonly property color clockBorderHover: accent
readonly property color clockTime: textMain
readonly property color clockSeconds: textMain
readonly property color clockIcon: textMain
readonly property color clockSeparator: separator
readonly property color clockText: textMain
readonly property color clockShadow: "#22000000"
// ── Calendar Popup ─────────────────────────────────────────────────────────
readonly property color calCardBg: bgPopup
readonly property color calCardBorder: borderPopup
readonly property color calSeparator: separator
readonly property color calShadow: "#44000000"
readonly property color clockPopupHeader: accent
readonly property color clockPopupText: textMain
readonly property color clockPopupDim: textDim
// ── Workspace Module ───────────────────────────────────────────────────────
readonly property color wsPanelBg: bgPanel
readonly property color wsPanelBorder: "transparent"
readonly property color wsActiveBg: accent
readonly property color wsInactiveBg: "#22ffffff"
readonly property color wsHoverBg: borderPopup
readonly property color wsActiveText: "#ff0e1410"
readonly property color wsInactiveText: textMain
readonly property color wsHoverText: wsActiveText
// ── Tray Module ────────────────────────────────────────────────────────────
readonly property color trayBg: clockBg
readonly property color trayBgHover: clockBgHover
readonly property color trayBorder: clockBorder
readonly property color trayBorderHover: clockBorderHover
readonly property color trayIcon: clockIcon
// ── Launcher ───────────────────────────────────────────────────────────────
readonly property color launcherBg: bgPopup
readonly property color launcherBorder: "#22ffffff"
readonly property color launcherInput: "#330b1210"
readonly property color launcherInputBorderFocus: accent
readonly property color launcherPill: "#4d111a14"
readonly property color launcherText: textMain
readonly property color launcherDim: textDim
readonly property color launcherAccent: accent
readonly property color launcherHover: "#4d2d4032"
readonly property color launcherSelected: launcherHover
readonly property color launcherModeActiveText: todayText
readonly property color launcherModeActiveBg: accent
// ── Status Colors ──────────────────────────────────────────────────────────
readonly property color statusOk: "#ffa7c080"
readonly property color statusWarn: "#ffdbbc7f"
readonly property color statusErr: "#ffe67e80"
readonly property color statusInfo: "#ff7fbbb3"
// ── Notifications Module ───────────────────────────────────────────────────
readonly property color notifBg: bgPanel
readonly property color notifBgHover: "#22ffffff"
readonly property color notifBorder: border
readonly property color notifBorderActive: accent
readonly property color notifIcon: textMain
readonly property color notifIconActive: accent
readonly property color notifBadgeBg: statusErr
readonly property color notifBadgeText: "#ff0e1410"
readonly property color notifSeparator: separator
// ── Toast cards ────────────────────────────────────────────────────────────
readonly property color notifToastBg: bgPopup
readonly property color notifToastBgHover: borderPopup
readonly property color notifToastBorder: borderPopup
readonly property color notifToastShadow: "#55000000"
readonly property color notifToastText: textMain
readonly property color notifToastDim: textDim
readonly property color notifToastAppName: accent
// ── Urgency colours ────────────────────────────────────────────────────────
readonly property color notifUrgencyCritical: statusErr
readonly property color notifUrgencyNormal: statusInfo
readonly property color notifUrgencyLow: textDim
// ── Progress bar ───────────────────────────────────────────────────────────
readonly property color notifProgressBg: "#22ffffff"
readonly property color notifProgressFill: accent
// ── History popup ──────────────────────────────────────────────────────────
readonly property color notifHistoryBg: bgPopup
readonly property color notifHistoryBorder: borderPopup
readonly property color notifHistoryShadow: "#55000000"
readonly property color notifHistoryHover: "#22ffffff"
readonly property color notifHistoryEmpty: textDim
}

3
config/themes/qmldir Normal file
View File

@@ -0,0 +1,3 @@
module themes
singleton Everforest 1.0 everforest.qml