diff options
author | Srikant Patnaik | 2015-02-20 13:40:33 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-02-20 13:40:33 +0530 |
commit | ba8a401f4103af52e037b66eb6dcac1658de2e3d (patch) | |
tree | 6f6337e0301314e0d3fbb4cd0b9a58aec321f0e9 | |
parent | 462062c8b10fd50fe076191311d51399ce83bf0e (diff) | |
download | FOSSEE-netbook-tools-ba8a401f4103af52e037b66eb6dcac1658de2e3d.tar.gz FOSSEE-netbook-tools-ba8a401f4103af52e037b66eb6dcac1658de2e3d.tar.bz2 FOSSEE-netbook-tools-ba8a401f4103af52e037b66eb6dcac1658de2e3d.zip |
Added check for X server running status, this will help password function to switch to ncurses when run from console
-rwxr-xr-x | patcher.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,8 +161,8 @@ function sudo_access() { sudo -K # The only place 'easybashgui' fails. So adding separate functions for both tty(consoles) # and pts(terminals). If tty not found, it returns 1, and 'zenity' is used -tty | grep tty -if [ $? -eq 1 ]; then + +if [ ! -z $(pidof X) ] ; then while true do |