feat(waybar): island floating 3-pills + popups + deploy
- Config waybar 3-pills glassmorphism (left/center/right) - Scripts : gpu, network, power-profile (toggle+luminosité/profil), cava daemon+reader, wob (volume/luminosité), rofi-launcher - Popup media GTK3 : volume sortie+entrée + luminosité (vc-media-popup.py) - Profil énergie : cycle balanced→low-power→performance avec brightnessctl - Autostart COSMIC : waybar.desktop + wob.desktop - Thème COSMIC Light ajouté (accent violet-chaton) - deploy : +autostart, +sudoers platform_profile, +udev platform_profile, +scripts .py waybar, +CosmicTheme.Light
This commit is contained in:
16
INSTALL/configs/waybar/scripts/wob-start.sh
Executable file
16
INSTALL/configs/waybar/scripts/wob-start.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
# wob-start.sh — lance le daemon wob via FIFO
|
||||
# Appelé au démarrage de session (autostart)
|
||||
|
||||
FIFO="/tmp/wob.fifo"
|
||||
|
||||
pkill wob 2>/dev/null
|
||||
rm -f "$FIFO"
|
||||
mkfifo "$FIFO"
|
||||
|
||||
# Ouvrir le FIFO en lecture+écriture sur fd3 :
|
||||
# - empêche wob de recevoir EOF entre deux écritures
|
||||
# - wob hérite du fd et reste vivant même après la fin de ce script
|
||||
exec 3<> "$FIFO"
|
||||
wob --config "$HOME/.config/wob.ini" <&3 &
|
||||
disown $!
|
||||
Reference in New Issue
Block a user