Merge branch 'Ly-sec:main' into main

This commit is contained in:
ferrreo 2025-07-16 13:13:15 +01:00 committed by GitHub
commit daf12331c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 55 additions and 26 deletions

View file

@ -176,7 +176,7 @@ Scope {
id: bottomLeftCorner
position: "topleft"
size: 1.3
fillColor: "#00FFFF"
fillColor: Theme.backgroundPrimary
offsetX: -39
offsetY: 0
anchors.top: parent.top
@ -198,7 +198,7 @@ Scope {
id: bottomRightCorner
position: "topright"
size: 1.3
fillColor: "#00FFFF"//(Theme.backgroundPrimary !== undefined && Theme.backgroundPrimary !== null) ? Theme.backgroundPrimary : "#222"
fillColor: Theme.backgroundPrimary
offsetX: 39
offsetY: 0
anchors.top: parent.top

View file

@ -92,7 +92,7 @@ PopupWindow {
id: bg
anchors.fill: parent
color: mouseArea.containsMouse ? Theme.highlight : "transparent"
radius: 12
radius: 8
visible: !(modelData?.isSeparator ?? false)
property color hoverTextColor: mouseArea.containsMouse ? Theme.onAccent : Theme.textPrimary

View file

@ -136,7 +136,7 @@ Row {
StyledTooltip {
id: trayTooltip
text: modelData.name || modelData.id || "Tray Item"
text: modelData.tooltipTitle || modelData.name || modelData.id || "Tray Item"
tooltipVisible: false
targetItem: trayIcon
delay: 200

View file

@ -1,28 +1,28 @@
{
"backgroundPrimary": "#0E0F10",
"backgroundSecondary": "#1A1B1C",
"backgroundTertiary": "#262728",
"backgroundPrimary": "#111211",
"backgroundSecondary": "#1D1E1D",
"backgroundTertiary": "#292A29",
"surface": "#212223",
"surfaceVariant": "#323334",
"surface": "#242524",
"surfaceVariant": "#353635",
"textPrimary": "#F0F1E0",
"textSecondary": "#D8D9CA",
"textDisabled": "#909186",
"textPrimary": "#F4E9E3",
"textSecondary": "#DCD2CC",
"textDisabled": "#928C88",
"accentPrimary": "#A3A485",
"accentSecondary": "#B5B69D",
"accentTertiary": "#82836A",
"accentPrimary": "#7D8079",
"accentSecondary": "#979994",
"accentTertiary": "#646661",
"error": "#A5A9ED",
"warning": "#B9BCF1",
"error": "#939849",
"warning": "#ABAF72",
"highlight": "#C8C8B6",
"rippleEffect": "#ACAD91",
"highlight": "#B1B3AF",
"rippleEffect": "#8A8D86",
"onAccent": "#0E0F10",
"outline": "#565758",
"onAccent": "#111211",
"outline": "#585958",
"shadow": "#0E0F10",
"overlay": "#0E0F10"
"shadow": "#111211",
"overlay": "#111211"
}

View file

@ -0,0 +1,29 @@
# Ghostty theme template for wallust
# Add to wallust config: ghostty = { src = "ghostty.conf", dst = "~/.config/ghostty/theme.conf" }
# And add to ghostty config: theme = "theme.conf"
palette = 0={{ color0 }}
palette = 1={{ color1 }}
palette = 2={{ color2 }}
palette = 3={{ color3 }}
palette = 4={{ color4 }}
palette = 5={{ color5 }}
palette = 6={{ color6 }}
palette = 7={{ color7 }}
palette = 8={{ color8 }}
palette = 9={{ color9 }}
palette = 10={{ color10 }}
palette = 11={{ color11 }}
palette = 12={{ color12 }}
palette = 13={{ color13 }}
palette = 14={{ color14 }}
palette = 15={{ color15 }}
background = {{ background }}
foreground = {{ foreground }}
cursor-color = {{ cursor }}
cursor-text = {{ foreground }}
selection-background = {{ color8 }}
selection-foreground = {{ foreground }}

View file

@ -114,8 +114,8 @@ Rectangle {
width: 32
height: 32
radius: 16
color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.accentPrimary : "transparent"
border.color: Theme.accentPrimary
color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.error : "transparent"
border.color: Theme.error
border.width: 1
Text {
@ -123,7 +123,7 @@ Rectangle {
text: "power_settings_new"
font.family: "Material Symbols Outlined"
font.pixelSize: 16
color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.backgroundPrimary : Theme.accentPrimary
color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.backgroundPrimary : Theme.error
}
MouseArea {