#!/bin/bash # jgdesktops # case $LANG in pl*) REMOVE="Usuń to menu z panelu" ACTIVE="bieżący" GOTO="Idź do..." WINKILL="Zabijacz Okien" CLOSEALL_GR="Z wdziękiem zamknij wszystkie okna na..." CLOSEALL="Zamknij wszystkie okna na..." DESKTOP="Pulpicie" ALL_DESK="Wszystkich pulpitach" MANAGE="Pulpity" ADD="Dodaj nowy" REMOVE="Usuń ostatni" DESKMNGR="Menadżer sesji pulpitowych" ;; es*) REMOVE="Eliminar este menú del panel" ACTIVE="active" GOTO="Go to..." WINKILL="Windows Killer" CLOSEALL_GR="Gracefully close all windows on..." CLOSEALL="Close all windows on..." DESKTOP="Desktop" ALL_DESK="All Desktops" MANAGE="Manage Desktops" ADD="Add new desktop" REMOVE="Remove last desktop" DESKMNGR="Desktop session Manager" ;; *) REMOVE="Remove this menu from panel" ACTIVE="active" GOTO="Go to..." WINKILL="Windows Killer" CLOSEALL_GR="Gracefully close all windows on..." CLOSEALL="Close all windows on..." DESKTOP="Desktop" ALL_DESK="All Desktops" MANAGE="Manage Desktops" ADD="Add new desktop" REMOVE="Remove last desktop" DESKMNGR="Desktop session Manager" ;; esac currdesk=$(wmctrl -d | grep "*" | awk '{print $1}') #out+=("^sep(Okna i pulpity)") i=0 while IFS= read -r linia || [ -n "$linia" ]; do name="" read -r ID name< <(echo $linia) #declare -g "arr$ID"=("$name, wmctrl -s $ID") dname=$(wmctrl -d | grep ^${ID} | cut -d' ' -f13-) if [[ "$ID" = "$currdesk" ]]; then out+=("^sep(${dname/&/&} ($ACTIVE))") else out+=("^sep(${dname/&/&})" "  $GOTO,wmctrl -s $ID") fi while IFS= read -r line do read -r id DESK host title< <(echo $line) if [[ "$DESK" = "$ID" ]]; then trimmed=${title:0:60} out+=("\"\"\"[ ${trimmed/&/&} ]\"\"\",wmctrl -i -a $id") fi done < <(wmctrl -l| grep -v " -1") done < <(wmctrl -d|awk '{print $1" "$10" "$11}') # Gracefully close windows on any desktop or all windows if [ $(wmctrl -l | awk $2 '!/-1/ {print $2}' | uniq |wc -l) -gt 0 ];then out+=("^sep($WINKILL)") out+=("$CLOSEALL_GR,^checkout(killwin)") out2+=("^tag(killwin)" "^sep($CLOSEALL)") for i in $(wmctrl -l | awk $2 '!/-1/ {print $2}' |sort| uniq) do dname=$(wmctrl -d | grep ^${i} | cut -d' ' -f13-) out2+=("  $DESKTOP ${dname/&/&},killwindows $i") done out2+=("^sep()" "$ALL_DESK,killwindows all") fi out+=("^sep($MANAGE)") desktops=$(wmctrl -d |wc -l) out+=("  $ADD,wmctrl -n $((desktops+1))") out+=("  $REMOVE,wmctrl -n $((desktops-1))") out+=("^sep()") out+=("$DESKMNGR,jgdeskmngr -s") ### RUN if [[ $1 == "-s" ]]; then . /usr/bin/pipemenu-standalone.cfg . $HOME/.config/mabox/mabox.conf if [[ $panels_heightpos == "top" ]]; then MENU_VALIGN="top" MENU_MARGIN_Y=${panels_topmargin:-0} elif [[ $panels_heightpos == "bottom" ]]; then MENU_VALIGN="bottom" MENU_MARGIN_Y=${panels_topmargin:-0} else MENU_VALIGN="center" fi MENU_PADDING_TOP=${jgtools_padding:-0} MENU_HALIGN="center" jgmenu_icon_size=0 [ $(pidof picom) ] && MENU_RADIUS=$jgtools_radius [ -z $jgmenu_use_borders ] && menu_border=0 mkconfigfile cat < ${MENU_ITEMS} $(printf '%s\n' "${out[@]}") $(printf '%s\n' "${out2[@]}") EOF jgmenu --config-file=${CONFIG_FILE} --csv-file=${MENU_ITEMS} 2>/dev/null exit 0 fi printf '%s\n' "${out[@]}" if [[ $1 == "-r" ]]; then printf '%s\n' "^sep()" printf '%s\n' "$REMOVE,mb-setvar places_jgdesktops=false;mb-jgtools places" fi printf '%s\n' "${out2[@]}"