LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 05-24-2012, 11:42 PM   #1
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Rep: Reputation: Disabled
Run GTK UI UDEV


I can run a bash script no problem with udev, but how do I run a GTK UI? I tried the PROGRAM+="/path/to/prog/" and nothing.

I tried calling the program from within a script, still no luck.

So, does anyone know how to do this?
 
Old 05-24-2012, 11:44 PM   #2
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Please don't double post. I've reported this thread as a duplicate of this one.
 
Old 05-25-2012, 12:05 AM   #3
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Original Poster
Rep: Reputation: Disabled
Dude relax, it was an accident. My computer's connection was hanging on load. So, I stopped it, and refreshed. Then clicked post again and it apparently double posted. It's not the end of the world.

Thanks for the help though.

Last edited by amboxer21; 05-25-2012 at 12:06 AM.
 
Old 05-25-2012, 01:03 AM   #4
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Original Poster
Rep: Reputation: Disabled
Anyhow, here is what I have so far:
Code:
#!/bin/bash
echo "HELLO WORLD" > /home/amboxer/Desktop/hello.txt; 
export DISPLAY=:0.0 
#su amboxer21 -c 'xhost local:amboxer21; 
#PASSWORD=$(zenity --title='Password' --password | sudo -S /home/amboxer21/Documents/warning)
PASSWORD=$(zenity --title='Password' --password)

echo $PASSWORD

if [ $PASSWORD == "password" ]; then
mount /media/Lexar;

        else 
        umount -l /media/Lexar;
fi
I am able to run a C or gtk program with:
Code:
sudo -S /home/annonymous/Documents/warning

I Know that it is extremely sloppy at the moment but it will get fixed up as I go along. Thanks

BTW, Couldn't have done it without you @Nylex!

Last edited by amboxer21; 05-25-2012 at 01:18 AM.
 
Old 05-25-2012, 01:51 AM   #5
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Original Poster
Rep: Reputation: Disabled
Anyone, I have
Code:
#!/bin/bash
echo "HELLO WORLD" > /home/amboxer21/Desktop/hello.txt;
export DISPLAY=:0.0
#su amboxer21 -c 'xhost local:amboxer21;
#sudo -S /home/amboxer21/Documents/warning
PASSWORD=$(zenity --title='Password' --password)
echo $PASSWORD;

if [ $PASSWORD == "password" ]; then
sudo -S mount /media/Lexar;
exit 0;

        else
        PASSWORD=$(zenity --title='Password' --password)
        echo $PASSWORD;
fi
It will run properly at first. For example: If I plug in a usb device, a password prompt will pop up. If I enter the correct passwod the first time, it will mount the FS. If I enter the wrong password the first time, then the right password the second time, it will do nothing. How can I fix this?

I feel like I should have something in between my if and else!?
 
Old 05-25-2012, 02:28 AM   #6
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Original Poster
Rep: Reputation: Disabled
Im trying to run it through a loop
Code:
#!/bin/bash
echo "HELLO WORLD" > /home/amboxer21/Desktop/hello.txt;
export DISPLAY=:0.0
#su amboxer21 -c 'xhost local:amboxer21;
#sudo -S /home/amboxer21/Documents/warning
PASSWORD=$(zenity --title='Password' --password)
echo $PASSWORD;

while true; do

if [ $PASSWORD == "password" ]; then
su -S mount /media/Lexar;
exit 0;

        else
        PASSWORD=$(zenity --title='Password' --password)
        echo $PASSWORD;
fi

done
will infinitely run if password is wrong. If password is right, it exits and does not mount. Unless I type the correct password on the first try.

Last edited by amboxer21; 05-25-2012 at 03:18 AM.
 
Old 05-27-2012, 09:24 AM   #7
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
What you are attempting to do is a poor idea, since udev rules are invoked early in the boot process. At boot time, there is probably no X server running to support your GUI. You could possibly run the GUI on another X server (i.e. on a different host), but there is no guarantee that that server would be available, and it isn't even a sure thing that the network will be alive when some udev rules are invoked.
--- rod.
 
Old 05-27-2012, 09:49 AM   #8
amboxer21
Member
 
Registered: Mar 2012
Location: New Jersey
Distribution: Gentoo
Posts: 291

Original Poster
Rep: Reputation: Disabled
Yeah, I ran into way too many problems!! More of a headache than it was worth!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Run GTK UI UDEV amboxer21 Programming 1 05-25-2012 02:20 AM
[SOLVED] udev to run script not behaves like when run in terminal matiasar Linux - Software 6 04-17-2012 07:56 AM
UDEV: Unable to run a command line interface script after USB automount using udev mohamr2 Linux - Embedded & Single-board computer 8 08-16-2011 10:39 AM
Trying to run X without udev rtmistler Linux - Embedded & Single-board computer 2 03-04-2011 03:08 PM
udev RUN+= doesn't seem to work PlancksCnst Linux - General 18 05-15-2007 06:44 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 02:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration