
Code: Select all
#Hide cursor
echo -ne "\033[?25l"
#Show cursor
#echo -ne "\033[?25hCode: Select all
URxvt.cursorColor: #rrggbbCode: Select all
urxvt -cr rgb:rr/gg/bbCode: Select all
/usr/bin/urxvt +bc -fn 6x13 -fg grey -bl +sb -sh 100 -g 160x10+2+860 -e tail -f $1
If you don't want to create a script, then you can dorazze wrote:Code: Select all
/usr/bin/urxvt +bc -fn 6x13 -fg grey -bl +sb -sh 100 -g 160x10+2+860 -e tail -f $1
Code: Select all
/usr/bin/urxvt +bc -fn 6x13 -fg grey -bl +sb -sh 100 -g 160x10+2+860 -e sh -c 'echo -ne "\033[?25l" ; exec tail -f $1'The $1 will work if you interchange the order of the quotes:razze wrote:Hi!
Thanks for the tip!! The $1 does not work if I run this (actually a one-line script file), but if I give the log file directly on the command line then it works as I want to - and thats fine with me.
Code: Select all
"echo -ne '\033[?25l' ; exec tail -f $1"