Package: sdm-terminal Version: 0.4.0b-4 Severity: important Tags: patch thanks for updating sdm to use zenity! it's rekindled my interest in this simple login manager.
one small, though significant, bug leaves the login screen without a place to enter in the username. the following patch seems to fix it for me: --- 1001_use_zenity_not_Xdialog.patch.orig 2009-06-19 14:07:28.000000000 -0700 +++ 1001_use_zenity_not_Xdialog.patch 2009-06-19 14:08:26.000000000 -0700 @@ -71,7 +71,7 @@ - --cancel-label shutdown --inputbox \ - "$login_text" 0 0 "") + if [ -x "$(which zenity)" ]; then -+ user=$(zenity --question --title="login" $icon --ok-label="login" \ ++ user=$(zenity --entry --title="login" $icon --ok-label="login" \ + --cancel-label="shutdown" \ + --text="$login_text") since the zenity patch is so large, would you be interested in a new upstream version, with your patches applied? live well, vagrant -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

