Files
qtile/assets/popups/mpris2_layout.py

130 lines
3.2 KiB
Python
Raw Permalink Normal View History

2026-02-24 21:42:25 +01:00
from colors import gruvbox_dark
2026-02-23 17:56:46 +01:00
from qtile_extras.popup.toolkit import (
PopupRelativeLayout,
PopupImage,
PopupText,
2026-02-24 21:42:25 +01:00
PopupSlider,
2026-02-23 17:56:46 +01:00
)
2026-02-24 21:42:25 +01:00
image = "/home/cerberus/.config/qtile/assets/images/no_cover.svg"
2026-02-23 17:56:46 +01:00
MPRIS2_LAYOUT = PopupRelativeLayout(
None,
width=400,
height=200,
opacity=0.7,
background=gruvbox_dark["bg0_soft"],
hide_on_mouse_leave=True,
controls=[
PopupText(
"",
name="title",
2026-02-24 21:42:25 +01:00
font="Open Sans Bold",
2026-02-23 17:56:46 +01:00
fontsize=18,
pos_x=0.35,
pos_y=0.1,
width=0.55,
height=0.14,
h_align="left",
v_align="top",
),
PopupText(
"",
name="artist",
2026-02-24 21:42:25 +01:00
font="Open Sans Medium",
2026-02-23 17:56:46 +01:00
fontsize=14,
pos_x=0.35,
pos_y=0.24,
width=0.55,
height=0.14,
h_align="left",
v_align="middle",
),
PopupText(
"",
name="album",
2026-02-24 21:42:25 +01:00
font="Open Sans",
2026-02-23 17:56:46 +01:00
fontsize=14,
pos_x=0.35,
pos_y=0.38,
width=0.55,
height=0.14,
h_align="left",
v_align="bottom",
),
PopupImage(
name="artwork",
filename=image,
pos_x=0.1,
pos_y=0.1,
width=0.21,
height=0.42,
),
2026-02-24 21:42:25 +01:00
PopupSlider(
name="progress", pos_x=0.1, pos_y=0.6, width=0.8, height=0.1, marker_size=0
),
2026-02-23 17:56:46 +01:00
PopupText(
name="previous",
2026-02-24 21:42:25 +01:00
text="󰙤",
2026-02-23 17:56:46 +01:00
fontsize=30,
mask=True,
pos_x=0.125,
pos_y=0.8,
width=0.15,
height=0.1,
v_align="middle",
h_align="center",
2026-02-24 21:42:25 +01:00
highlight_method="text",
2026-02-23 17:56:46 +01:00
foreground=gruvbox_dark["fg0"],
highlight=gruvbox_dark["green"],
),
PopupText(
name="play_pause",
2026-02-24 21:42:25 +01:00
text="󰐎",
2026-02-23 17:56:46 +01:00
fontsize=30,
mask=True,
pos_x=0.325,
pos_y=0.8,
width=0.15,
height=0.1,
v_align="middle",
h_align="center",
2026-02-24 21:42:25 +01:00
highlight_method="text",
2026-02-23 17:56:46 +01:00
foreground=gruvbox_dark["fg0"],
highlight=gruvbox_dark["green"],
),
PopupText(
name="stop",
2026-02-24 21:42:25 +01:00
text="",
2026-02-23 17:56:46 +01:00
fontsize=30,
mask=True,
pos_x=0.525,
pos_y=0.8,
width=0.15,
height=0.1,
v_align="middle",
h_align="center",
2026-02-24 21:42:25 +01:00
highlight_method="text",
2026-02-23 17:56:46 +01:00
foreground=gruvbox_dark["fg0"],
highlight=gruvbox_dark["green"],
),
PopupText(
name="next",
2026-02-24 21:42:25 +01:00
text="󰙢",
2026-02-23 17:56:46 +01:00
fontsize=30,
mask=True,
pos_x=0.725,
pos_y=0.8,
width=0.15,
height=0.1,
v_align="middle",
h_align="center",
2026-02-24 21:42:25 +01:00
highlight_method="text",
2026-02-23 17:56:46 +01:00
foreground=gruvbox_dark["fg0"],
highlight=gruvbox_dark["green"],
),
],
close_on_click=False,
2026-02-24 21:42:25 +01:00
)