diff --git a/de/home/.config/eww/modules/bar/idle_inhibit.yuck b/de/home/.config/eww/modules/bar/idle_inhibit.yuck index f30487c..396edea 100644 --- a/de/home/.config/eww/modules/bar/idle_inhibit.yuck +++ b/de/home/.config/eww/modules/bar/idle_inhibit.yuck @@ -4,4 +4,5 @@ (box :class "idle-inhibitor ${inhibit_active ? 'active' : 'inactive'}" (button :onclick {inhibit_active ? 'killall eww-idle-inhibit;eww update inhibit_active=false' : 'systemd-inhibit --what="idle" --mode="block" scripts/bar/eww-idle-inhibit & eww update inhibit_active=true'} - {inhibit_active ? "" : ""}))) + :tooltip "Idling is ${inhibit_active ? '' : 'not '}inhibited" + {inhibit_active ? "" : ""}))) diff --git a/de/home/.config/eww/modules/bar/powermenu.yuck b/de/home/.config/eww/modules/bar/powermenu.yuck index b3a1dd7..76a5893 100644 --- a/de/home/.config/eww/modules/bar/powermenu.yuck +++ b/de/home/.config/eww/modules/bar/powermenu.yuck @@ -6,6 +6,7 @@ :revealvar-name "reveal_powermenu" (button :onclick 'scripts/bar/powermenu poweroff system-shutdown-symbolic "systemctl poweroff"' :class "revealer-preview" + :tooltip "Poweroff" "") (powermenu_children))) @@ -15,10 +16,14 @@ :space-evenly false :halign "center" (button :onclick 'scripts/bar/powermenu reboot system-reboot-symbolic "systemctl reboot"' + :tooltip "Reboot" "") (button :onclick 'scripts/bar/powermenu suspend weather-clear-night-symbolic "systemctl suspend"' + :tooltip "Suspend" "󰤄") (button :onclick 'scripts/bar/powermenu lock system-lock-screen-symbolic "sp-lock"' + :tooltip "Lock" "") (button :onclick 'scripts/bar/powermenu logout system-log-out-symbolic "swaymsg exit"' + :tooltip "Log Out" ""))) diff --git a/de/home/.config/eww/modules/bar/profile.yuck b/de/home/.config/eww/modules/bar/profile.yuck index 8bae545..7edc80f 100644 --- a/de/home/.config/eww/modules/bar/profile.yuck +++ b/de/home/.config/eww/modules/bar/profile.yuck @@ -2,5 +2,6 @@ (deflisten active_profile_name "scripts/bar/profile-name") (defwidget profile [] (button :onclick "sp-profiles next" + :tooltip "${active_profile_name}" :class "profile ${((active_profile_name == 'Work') ? 'profile-work' : ((active_profile_name == 'Housing') ? 'profile-housing' : ((active_profile_name == 'Development') ? 'profile-development' : ((active_profile_name == 'Personal') ? 'profile-personal' : ''))))}" {active_profile})) diff --git a/de/home/.config/eww/modules/bar/volume.yuck b/de/home/.config/eww/modules/bar/volume.yuck index 4e5cde2..c8c6921 100644 --- a/de/home/.config/eww/modules/bar/volume.yuck +++ b/de/home/.config/eww/modules/bar/volume.yuck @@ -5,6 +5,7 @@ :revealvar reveal_volume :revealvar-name "reveal_volume" (button :onclick 'pavucontrol-qt --tab 3' + :tooltip "Pulseaudio Volume Control" :class "${(volume == 0) ? 'inactive' : 'active'} revealer-preview" {(volume == 0) ? "" : ((volume > 50) ? "" : "")}) (volume_children))) @@ -17,6 +18,7 @@ :space-evenly false :halign "center" (scale + :tooltip "volume: ${round(volume,0)}%" :min 0 :max 100 :value {volume} diff --git a/de/home/.config/eww/modules/bar/window_name.yuck b/de/home/.config/eww/modules/bar/window_name.yuck index 5f17a24..1063918 100644 --- a/de/home/.config/eww/modules/bar/window_name.yuck +++ b/de/home/.config/eww/modules/bar/window_name.yuck @@ -2,10 +2,5 @@ :interval "60s" "scripts/bar/activewindow") (defwidget windowtitle [] -; (box :class "bar-module" -; :space-evenly false -; (button :onclick 'sp-profiles next' -; (label :text '${active_profile}')) (label :class {active_window_name != "" ? "active_window" : ""} :text {active_window_name})) -;)