mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 20:13:00 +02:00
Change popup width
This commit is contained in:
parent
5217531974
commit
53840d783d
1 changed files with 8 additions and 8 deletions
16
dzgui.sh
16
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=2.8.0-rc.4
|
||||
version=2.8.0
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -29,10 +29,10 @@ sums_path="$helpers_path/sums.md5"
|
|||
scmd_file="$helpers_path/scmd.sh"
|
||||
km_helper_url="$releases_url/latlon"
|
||||
db_file="$releases_url/ips.csv.gz"
|
||||
sums_url="$testing_url/helpers/sums.md5"
|
||||
scmd_url="$testing_url/helpers/scmd.sh"
|
||||
notify_url="$testing_url/helpers/d.html"
|
||||
notify_img_url="$testing_url/helpers/d.webp"
|
||||
sums_url="$stable_url/helpers/sums.md5"
|
||||
scmd_url="$stable_url/helpers/scmd.sh"
|
||||
notify_url="$stable_url/helpers/d.html"
|
||||
notify_img_url="$stable_url/helpers/d.webp"
|
||||
forum_url="https://github.com/aclist/dztui/discussions"
|
||||
|
||||
update_last_seen(){
|
||||
|
@ -315,7 +315,7 @@ run_varcheck(){
|
|||
else
|
||||
zenity --warning --width 500 --text="$(varcheck)" 2>/dev/null
|
||||
printf "[DZGUI] %s\n" "$check_config_msg"
|
||||
zenity --question --cancel-label="Exit" --text="Malformed config file. This is probably user error.\nStart first-time setup process again?" 2>/dev/null
|
||||
zenity --question --cancel-label="Exit" --text="Malformed config file. This is probably user error.\nStart first-time setup process again?" --width=500 2>/dev/null
|
||||
code=$?
|
||||
if [[ $code -eq 1 ]]; then
|
||||
exit
|
||||
|
@ -833,7 +833,7 @@ delete_by_id(){
|
|||
nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old)
|
||||
awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc
|
||||
echo "[DZGUI] Removed $server_id from key 'whitelist'"
|
||||
zenity --info --title="DZGUI" --text="Removed "$server_id" from:\n${config_path}dztuirc\nIf errors occur, you can restore the file:\n${config_path}dztuirc.old" 2>/dev/null
|
||||
zenity --info --title="DZGUI" --text="Removed "$server_id" from:\n${config_path}dztuirc\nIf errors occur, you can restore the file:\n${config_path}dztuirc.old" --width=500 2>/dev/null
|
||||
source $config_file
|
||||
}
|
||||
delete_or_connect(){
|
||||
|
@ -1539,7 +1539,7 @@ add_by_id(){
|
|||
nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old)
|
||||
awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc
|
||||
echo "[DZGUI] Added $id to key 'whitelist'"
|
||||
zenity --info --title="DZGUI" --text="Added "$id" to:\n${config_path}dztuirc\nIf errors occur, you can restore the file:\n${config_path}dztuirc.old" 2>/dev/null
|
||||
zenity --info --title="DZGUI" --text="Added "$id" to:\n${config_path}dztuirc\nIf errors occur, you can restore the file:\n${config_path}dztuirc.old" --width=500 2>/dev/null
|
||||
source $config_file
|
||||
return
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue