From 9a7105adba287ba151c062808854e744ad847405 Mon Sep 17 00:00:00 2001 From: Daniel Napora Date: Fri, 26 Aug 2022 23:16:20 +0200 Subject: [PATCH] jgtint2 tools upd --- usr/bin/jgtint2-pipe | 27 +++++++++++++++++++++------ usr/bin/jgtint2launcher | 10 +++++----- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/usr/bin/jgtint2-pipe b/usr/bin/jgtint2-pipe index db0a75f..f226291 100755 --- a/usr/bin/jgtint2-pipe +++ b/usr/bin/jgtint2-pipe @@ -52,7 +52,12 @@ case $LANG in CONFIGURE="Konfiguruj (GUI)" REMOVE="Usuń to menu z panelu" TRAY_HWMON="Monitor zasobów w trayu" - ;; + START="Uruchom/Włącz" + STOP="Zatrzymaj/Wyłącz" + MEM="Pamięć" + NET="Użycie sieci" + DISC_IO="IO Dysku" + ;; es*) LNG="en" TITLE="Panel Tint2" @@ -96,6 +101,11 @@ case $LANG in CONFIGURE="Editor gráfico" REMOVE="Eliminar este menú del panel" TRAY_HWMON="Systray HW monitor" + START="Start/Enable" + STOP="Stop/Disable" + MEM="Memory" + NET="Networg usage" + DISC_IO="Disc IO" ;; *) LNG="en" @@ -140,6 +150,11 @@ case $LANG in CONFIGURE="Configure (GUI)" REMOVE="Remove this menu from panel" TRAY_HWMON="Systray HW monitor" + START="Start/Enable" + STOP="Stop/Disable" + MEM="Memory" + NET="Networg usage" + DISC_IO="Disc IO" ;; esac getvalues () { @@ -321,16 +336,16 @@ PHWRUN="mabox-obstart phwmon" out+=("^sep($TRAY_HWMON)") if [ "$(pgrep -f phwmon.py)" ];then - out+=("Stop/Disable,mb-setvar phwmon_monitor=false;sleep 2;$PHWRUN;$me") + out+=("$STOP,mb-setvar phwmon_monitor=false;sleep 2;$PHWRUN;$me") else - out+=("Start/Enable,mb-setvar phwmon_monitor=true;$PHWRUN;$me") + out+=("$START,mb-setvar phwmon_monitor=true;$PHWRUN;$me") fi out+=("^sep()") [[ $phwmon_cpu = false ]] && out+=("CPU,mb-setvar phwmon_cpu=true;$PHWRUN;$me") || out+=("CPU,mb-setvar phwmon_cpu=false;$PHWRUN;$me") -[[ $phwmon_mem = false ]] && out+=("Memory,mb-setvar phwmon_mem=true;$PHWRUN;$me") || out+=("Memory,mb-setvar phwmon_mem=false;$PHWRUN;$me") +[[ $phwmon_mem = false ]] && out+=("$MEM,mb-setvar phwmon_mem=true;$PHWRUN;$me") || out+=("$MEM,mb-setvar phwmon_mem=false;$PHWRUN;$me") [[ $phwmon_swap = false ]] && out+=("Swap,mb-setvar phwmon_swap=true;$PHWRUN;$me") || out+=("Swap,mb-setvar phwmon_swap=false;$PHWRUN;$me") -[[ $phwmon_net = false ]] && out+=("Network usage,mb-setvar phwmon_net=true;$PHWRUN;$me") || out+=("Network usage,mb-setvar phwmon_net=false;$PHWRUN;$me") -[[ $phwmon_io = false ]] && out+=("Disk IO,mb-setvar phwmon_io=true;$PHWRUN;$me") || out+=("Disk IO,mb-setvar phwmon_io=false;$PHWRUN;$me") +[[ $phwmon_net = false ]] && out+=("$NET,mb-setvar phwmon_net=true;$PHWRUN;$me") || out+=("$NET,mb-setvar phwmon_net=false;$PHWRUN;$me") +[[ $phwmon_io = false ]] && out+=("$DISC_IO,mb-setvar phwmon_io=true;$PHWRUN;$me") || out+=("$DISC_IO,mb-setvar phwmon_io=false;$PHWRUN;$me") fi #out+=("^sep($EDIT_TINT2)") diff --git a/usr/bin/jgtint2launcher b/usr/bin/jgtint2launcher index 2599a29..386e807 100755 --- a/usr/bin/jgtint2launcher +++ b/usr/bin/jgtint2launcher @@ -34,10 +34,10 @@ LAUNCHERDIR="$HOME/.config/tint2/launcherapps" mkdir -p ${LAUNCHERDIR} APPSDIR="/usr/share/applications" -out+=("@text,,$(expr $jgtools_padding + 10),$(expr $jgtools_padding + 10),300,20,4,left,top,auto,#111111,$TITLE") +out+=("@text,,$(expr $jgtools_padding + 10),$(expr $jgtools_padding + 10),340,20,4,left,top,auto,#111111,$TITLE") out+=("@search,,34,29,292,20,4,left,top,auto,#262626,\"\"\" $TYPE_TO_SEARCH\"\"\"") out+=("^sep($CURRENT)") -out+=(" $OPENDIR (~/.config/tint2/launcherapps),${JGMENU_RESOURCE_OPENER} $LAUNCHERDIR") +out+=(" $OPENDIR (~/.config/tint2/launcherapps),${JGMENU_RESOURCE_OPENER} $LAUNCHERDIR") out+=("^sep()") a=0 for item in "$LAUNCHERDIR"/*.desktop; do @@ -50,11 +50,11 @@ fi done if [[ $a -gt 1 ]]; then out+=("^sep()") -out+=("$DEL $ALL: ($a),rm -f $LAUNCHERDIR/*.desktop;killall -SIGUSR1 tint2;jgtint2launcher") +out+=("$DEL $ALL: ($a),rm -f $LAUNCHERDIR/*.desktop;killall -SIGUSR1 tint2;jgtint2launcher") fi out+=("^sep($ADD...)") -out+=(" $OPENDIR (/usr/share/applications),${JGMENU_RESOURCE_OPENER} $APPSDIR") +out+=(" $OPENDIR (/usr/share/applications),${JGMENU_RESOURCE_OPENER} $APPSDIR") out+=("^sep()") for item in "$APPSDIR"/*.desktop; do filename=${item##*/} @@ -70,7 +70,7 @@ MENU_PADDING_TOP=48 MENU_HALIGN="center" MENU_VALIGN="center" jgmenu_icon_size=0 -JGWIDTH=300 +JGWIDTH=340 MENU_HEIGHT_MAX=480 POSITION_MODE=${2:-center}