r/voidlinux 5h ago

COSMIC Desktop in the official repos?

4 Upvotes

Hey everyone,

Any plans to add COSMIC Desktop to the official Void repositories?

It's already available in the community repo (MtFBella109), but I'd prefer having it in the official ones. I saw the package request issue (#58149) is still open since December.

Is anyone working on it or know any updates?


r/voidlinux 1h ago

swayidle / swaylock under void. help appreciated.

Upvotes

i cant get swayidle run under void. hope someone can help. thx.

@hook.subscribe.startup_once
def autostart():
home = os.path.expanduser("~")
commands = [
"mako",
"sh -c 'pgrep swww-daemon || swww-daemon'",
"wl-paste -t text --watch clipman store --no-persist",
(
"swayidle -w "
f'before-sleep "swaylock -fF -i {home}/Pictures/lockscreen/VIM.png" '
'timeout 300 "brightnessctl -s set 0" '
'resume "brightnessctl -r"'
),
f"{home}/.config/qtile/scripts/void-audio-start.sh",
]
for cmd in commands:
qtile.spawn(cmd)