Dear Friends
I am using Kubuntu 12.04 LTS. now I want that when I logged in after boot and when I see the my desktop first time (after every boot ) there a message should be displayed like "please Do not Open etc ,,,,," by any mean like Kdialog, zenity or notify-send.
I made a script like
#!/bin/bash
sleep 300s
notify-send " my message"
and save this as message.sh
and I made a entry in /etc/rc.local
/path/to/file/message.sh
but it does not work for me if anybody have any idea please share I think it might be due to root because x-server is not running for the root and the scripts is showing
graphical message which run by rc.local as root
I aslo create .bash_login file in home directory it works but before Ksplash i want it after loading Ksplash
please give me solution
I am using Kubuntu 12.04 LTS. now I want that when I logged in after boot and when I see the my desktop first time (after every boot ) there a message should be displayed like "please Do not Open etc ,,,,," by any mean like Kdialog, zenity or notify-send.
I made a script like
#!/bin/bash
sleep 300s
notify-send " my message"
and save this as message.sh
and I made a entry in /etc/rc.local
/path/to/file/message.sh
but it does not work for me if anybody have any idea please share I think it might be due to root because x-server is not running for the root and the scripts is showing
graphical message which run by rc.local as root
I aslo create .bash_login file in home directory it works but before Ksplash i want it after loading Ksplash
please give me solution
Comment