Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
branding-etersoft-ximper
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
branding-etersoft-ximper
Commits
2a1fea34
Verified
Commit
2a1fea34
authored
Jun 30, 2026
by
Kirill Unitsaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hyprland: drop quickshell/volume-osd
parent
040d135a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
105 deletions
+0
-105
volume-osd.qml
configs/hyprland/quickshell/volume-osd.qml
+0
-105
No files found.
configs/hyprland/quickshell/volume-osd.qml
deleted
100644 → 0
View file @
040d135a
import
QtQuick
import
QtQuick
.
Layouts
import
Quickshell
import
Quickshell
.
Wayland
import
Quickshell
.
Services
.
Pipewire
import
Quickshell
.
Widgets
Scope
{
id
:
root
PwObjectTracker
{
objects
:
[
Pipewire
.
defaultAudioSink
]
}
Connections
{
target
:
Pipewire
.
defaultAudioSink
?.
audio
function
onMutedChanged
()
{
root
.
volume
=
target
.
muted
?
0
:
target
.
volume
root
.
shouldShowOsd
=
true
;
hideTimer
.
restart
();
}
function
onVolumeChanged
()
{
if
(
target
.
muted
)
return
root
.
volume
=
(
Pipewire
.
defaultAudioSink
?.
audio
.
volume
??
0
)
root
.
shouldShowOsd
=
true
;
hideTimer
.
restart
();
}
}
property
bool
shouldShowOsd
:
false
property
real
volume
:
0.0
Timer
{
id
:
hideTimer
interval
:
1000
onTriggered
:
root
.
shouldShowOsd
=
false
}
LazyLoader
{
active
:
root
.
shouldShowOsd
PanelWindow
{
WlrLayershell.layer
:
WlrLayer
.
Overlay
WlrLayershell.exclusiveZone
:
-
1
anchors.bottom
:
true
margins.bottom
:
screen
.
height
/
20
implicitWidth
:
300
implicitHeight
:
40
color
:
"transparent"
mask
:
Region
{}
Rectangle
{
anchors.fill
:
parent
radius
:
height
/
2
color
:
"#222226"
border.color
:
"#434347"
RowLayout
{
anchors
{
fill
:
parent
leftMargin
:
15
rightMargin
:
15
}
spacing
:
10
Text
{
id
:
volumeText
Layout.preferredWidth
:
35
Layout.preferredHeight
:
20
text
:
Math
.
round
(
root
.
volume
*
100
)
+
"%"
color
:
"white"
font.pixelSize
:
14
font.bold
:
true
horizontalAlignment
:
Text
.
AlignRight
verticalAlignment
:
Text
.
AlignVCenter
}
Rectangle
{
Layout.fillWidth
:
true
Layout.preferredHeight
:
10
radius
:
20
color
:
"#40D8E2EA"
Rectangle
{
anchors
{
left
:
parent
.
left
top
:
parent
.
top
bottom
:
parent
.
bottom
}
width
:
parent
.
width
*
root
.
volume
height
:
parent
.
height
radius
:
parent
.
radius
color
:
"white"
}
}
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment