2025-08-17 14:46:12 +02:00
|
|
|
from libqtile.lazy import lazy
|
|
|
|
|
|
|
|
|
|
from qtile_extras import widget
|
|
|
|
|
from qtile_extras.widget.groupbox2 import GroupBoxRule
|
|
|
|
|
|
|
|
|
|
from config import widget_defaults
|
|
|
|
|
from themes.colors import gruvbox_dark
|
|
|
|
|
from plugins.notifications import Notifier
|
|
|
|
|
|
|
|
|
|
from popups import start_menu
|
|
|
|
|
|
|
|
|
|
widgets_media = [
|
|
|
|
|
widget.TextBox(
|
|
|
|
|
text="",
|
|
|
|
|
fontsize=24,
|
|
|
|
|
foreground=gruvbox_dark["blue"],
|
|
|
|
|
mouse_callbacks={"Button1": lazy.function(start_menu)},
|
|
|
|
|
**widget_defaults,
|
|
|
|
|
),
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
widgets_main = []
|
|
|
|
|
|
|
|
|
|
widgets_portrait = []
|