mirror of
https://github.com/vale981/bspwm
synced 2025-03-04 17:31:39 -05:00
Panel: differentiate focused and active desktops
This commit is contained in:
parent
7b33567f8f
commit
06c539a1dd
2 changed files with 42 additions and 13 deletions
|
@ -16,7 +16,7 @@ bspc subscribe report > "$PANEL_FIFO" &
|
|||
|
||||
. panel_colors
|
||||
|
||||
panel_bar < "$PANEL_FIFO" | lemonbar -a 32 -n "$PANEL_WM_NAME" -g x$PANEL_HEIGHT -f "$PANEL_FONT" -F "$COLOR_DEFAULT_FG" -B "$COLOR_DEFAULT_BG" | sh &
|
||||
panel_bar < "$PANEL_FIFO" | lemonbar -a 32 -u 2 -n "$PANEL_WM_NAME" -g x$PANEL_HEIGHT -f "$PANEL_FONT" -F "$COLOR_DEFAULT_FG" -B "$COLOR_DEFAULT_BG" | sh &
|
||||
|
||||
wid=$(xdo id -m -a "$PANEL_WM_NAME")
|
||||
xdo above -t "$(xdo id -N Bspwm -n root | sort | head -n 1)" "$wid"
|
||||
|
|
|
@ -18,7 +18,7 @@ while read -r line ; do
|
|||
;;
|
||||
W*)
|
||||
# bspwm's state
|
||||
wm=""
|
||||
wm=
|
||||
IFS=':'
|
||||
set -- ${line#?}
|
||||
while [ $# -gt 0 ] ; do
|
||||
|
@ -26,19 +26,21 @@ while read -r line ; do
|
|||
name=${item#?}
|
||||
case $item in
|
||||
[mM]*)
|
||||
[ $num_mon -lt 2 ] && shift && continue
|
||||
case $item in
|
||||
m*)
|
||||
# monitor
|
||||
FG=$COLOR_MONITOR_FG
|
||||
BG=$COLOR_MONITOR_BG
|
||||
on_focused_monitor=
|
||||
;;
|
||||
M*)
|
||||
# focused monitor
|
||||
FG=$COLOR_FOCUSED_MONITOR_FG
|
||||
BG=$COLOR_FOCUSED_MONITOR_BG
|
||||
on_focused_monitor=1
|
||||
;;
|
||||
esac
|
||||
[ $num_mon -lt 2 ] && shift && continue
|
||||
wm="${wm}%{F${FG}}%{B${BG}}%{A:bspc monitor -f ${name}:} ${name} %{A}%{B-}%{F-}"
|
||||
;;
|
||||
[fFoOuU]*)
|
||||
|
@ -47,34 +49,61 @@ while read -r line ; do
|
|||
# free desktop
|
||||
FG=$COLOR_FREE_FG
|
||||
BG=$COLOR_FREE_BG
|
||||
UL=$BG
|
||||
;;
|
||||
F*)
|
||||
# focused free desktop
|
||||
FG=$COLOR_FOCUSED_FREE_FG
|
||||
BG=$COLOR_FOCUSED_FREE_BG
|
||||
if [ "$on_focused_monitor" ] ; then
|
||||
# focused free desktop
|
||||
FG=$COLOR_FOCUSED_FREE_FG
|
||||
BG=$COLOR_FOCUSED_FREE_BG
|
||||
UL=$BG
|
||||
else
|
||||
# active free desktop
|
||||
FG=$COLOR_FREE_FG
|
||||
BG=$COLOR_FREE_BG
|
||||
UL=$COLOR_FOCUSED_FREE_BG
|
||||
fi
|
||||
;;
|
||||
o*)
|
||||
# occupied desktop
|
||||
FG=$COLOR_OCCUPIED_FG
|
||||
BG=$COLOR_OCCUPIED_BG
|
||||
UL=$BG
|
||||
;;
|
||||
O*)
|
||||
# focused occupied desktop
|
||||
FG=$COLOR_FOCUSED_OCCUPIED_FG
|
||||
BG=$COLOR_FOCUSED_OCCUPIED_BG
|
||||
if [ "$on_focused_monitor" ] ; then
|
||||
# focused occupied desktop
|
||||
FG=$COLOR_FOCUSED_OCCUPIED_FG
|
||||
BG=$COLOR_FOCUSED_OCCUPIED_BG
|
||||
UL=$BG
|
||||
else
|
||||
# active occupied desktop
|
||||
FG=$COLOR_OCCUPIED_FG
|
||||
BG=$COLOR_OCCUPIED_BG
|
||||
UL=$COLOR_FOCUSED_OCCUPIED_BG
|
||||
fi
|
||||
;;
|
||||
u*)
|
||||
# urgent desktop
|
||||
FG=$COLOR_URGENT_FG
|
||||
BG=$COLOR_URGENT_BG
|
||||
UL=$BG
|
||||
;;
|
||||
U*)
|
||||
# focused urgent desktop
|
||||
FG=$COLOR_FOCUSED_URGENT_FG
|
||||
BG=$COLOR_FOCUSED_URGENT_BG
|
||||
if [ "$on_focused_monitor" ] ; then
|
||||
# focused urgent desktop
|
||||
FG=$COLOR_FOCUSED_URGENT_FG
|
||||
BG=$COLOR_FOCUSED_URGENT_BG
|
||||
UL=$BG
|
||||
else
|
||||
# active urgent desktop
|
||||
FG=$COLOR_URGENT_FG
|
||||
BG=$COLOR_URGENT_BG
|
||||
UL=$COLOR_FOCUSED_URGENT_BG
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
wm="${wm}%{F${FG}}%{B${BG}}%{A:bspc desktop -f ${name}:} ${name} %{A}%{B-}%{F-}"
|
||||
wm="${wm}%{F${FG}}%{B${BG}}%{U${UL}}%{+u}%{A:bspc desktop -f ${name}:} ${name} %{A}%{B-}%{F-}%{-u}"
|
||||
;;
|
||||
[LTG]*)
|
||||
# layout, state and flags
|
||||
|
|
Loading…
Add table
Reference in a new issue