diff options
author | Holger Paradies <retabell@gmx.de> | 2021-02-25 20:46:56 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2021-02-25 20:46:56 +0100 |
commit | a04e3b3338a242fbca8141b9883cb360e8fc18a0 (patch) | |
tree | 862dfa43696858676b33a8d71ad81ec306fc63f3 /kanotix-irc | |
parent | 800fd226608588e7f0a9f1091dc393c6e103e0c9 (diff) | |
download | kanotix-packages-a04e3b3338a242fbca8141b9883cb360e8fc18a0.zip kanotix-packages-a04e3b3338a242fbca8141b9883cb360e8fc18a0.tar.gz |
kanotix-irc-1.0.8 center yad window
Diffstat (limited to 'kanotix-irc')
-rw-r--r-- | kanotix-irc/debian/changelog | 6 | ||||
-rwxr-xr-x | kanotix-irc/kanotix-irc | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/kanotix-irc/debian/changelog b/kanotix-irc/debian/changelog index 382a2bb..8ff48a9 100644 --- a/kanotix-irc/debian/changelog +++ b/kanotix-irc/debian/changelog @@ -1,3 +1,9 @@ +kanotix-irc (1.0.8) unstable; urgency=medium + + * center option for yad + + -- Holger Paradies <retabell@gmx.de> Thu, 25 Feb 2021 20:45:58 +0100 + kanotix-irc (1.0.7) unstable; urgency=medium * add yad as dialog diff --git a/kanotix-irc/kanotix-irc b/kanotix-irc/kanotix-irc index 9ffa467..b61b620 100755 --- a/kanotix-irc/kanotix-irc +++ b/kanotix-irc/kanotix-irc @@ -62,7 +62,7 @@ inputbox() elif [ -x "$ZENITY" ]; then "$ZENITY" --title="$TITLE" --entry --text="$TEXT" --entry-text="$INIT" elif [ -x "$YAD" ]; then - "$YAD" --title="$TITLE" --entry --text="$TEXT" --entry-text="$INIT" + "$YAD" --center --title="$TITLE" --entry --text="$TEXT" --entry-text="$INIT" fi else "$DIALOG" --stdout --title "$TITLE" --inputbox "$TEXT" $HEIGHT $WIDTH "$INIT" |