Files
dotfiles/dot_config/quickshell/bar/popouts/PopoutBackground.qml
s0wlz (Matthias Puchstein) c5f7162ebb quickshell: add initial bar config with per-monitor workspaces
- Vertical bar on DP-2 with rounded-square pills throughout
- Per-monitor workspace groups sorted by screen x position, with
  Nerd Font icons for named workspaces and apex-neon red active indicator
- Bar layout: datetime+weather top, workspaces centered, gamemode+media+notif+system bottom
- Popouts anchor to triggering icon (top-right for datetime/weather, bottom-right for media/notif/system)
- Lock command switched from hyprlock to swaylock
- Hyprland blur/ignore_alpha layerrules for quickshell namespace

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 20:00:54 +02:00

20 lines
451 B
QML

import QtQuick
import "../../shared" as Shared
// Rounded left corners, square right (flush against bar)
Item {
anchors.fill: parent
clip: true
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
width: parent.width + 22
radius: 22
color: Shared.Theme.popoutBackground
border.width: 1
border.color: Shared.Theme.borderSubtle
}
}