You are not logged in.
I have a question on urxvt-unicode that has always puzzled me. I run a gsutil script to Google Cloud, and when I use it under other terminals (xfce-terminal or mate-terminal), I get less lines output than on rxvt-unicode.
Here is an example on Mate-Terminal for copying one file:
Copying file:///home/asdf/LastCloudBackup.txt [Content-Type=text/plain]...
/ [1 files][ 29.0 B/ 29.0 B]
Operation completed over 1 objects/29.0 B.
Here is the same operation when done on rxvt-unicode:
Copying file:///home/asdf/LastCloudBackup.txt [Content-Type=text/plain]...
/ [0 files][ 0.0 B/ 29.0 B]
/ [1 files][ 29.0 B/ 29.0 B]
Operation completed over 1 objects/29.0 B.
Any idea why there is an extra line of output on rxvt-unicode? Any settings that can reduce verbosity?
Thanks!
Offline
Thanks for the response! I will take a look at it with a hex editor when I get a chance. But what you say makes sense. Hopefully it will be fixed someday but I won't hold my breath.
Offline
Any settings that can reduce verbosity?
Try adding this line to ~/.Xresources
URxvt.secondaryScreen: false
Offline
oneleaf wrote:Any settings that can reduce verbosity?
Try adding this line to ~/.Xresources
URxvt.secondaryScreen: false
Just gave this a try and it did not fix the issue, unfortunately.
In fact, I just did a big file over gsutil, and I realized it is even worse than I thought. Normally, the progress indicator stays in one line and keeps increasing 0% to 100%. But in urxvt, it can go up to an absurd number of lines for each level of progress.
Last edited by oneleaf (2016-09-24 17:19:38)
Offline
Here is an example of what happens...
http://i.imgur.com/mdAWSi8.png
Mod Note: oversized image converted to URL, please limit images to ~250x250px
-HoaS
Last edited by Head_on_a_Stick (2016-09-24 22:48:48)
Offline
It would appear that other terminals are honouring an instruction to move the cursor back to the starting position, and overwrite what they'd previously put on that line, for reasons I can't guess at it appears urxvt-unicode is ignoring the instruction to do so.
Blessed is he who expecteth nothing, for he shall not be disappointed...
If there's an obscure or silly way to break it, but you don't know what.. Just ask me
Offline
Thanks for the feedback.
Sort of found a resolution to this in that the problem went away when I made the window wider. So I can sort of resolve this by widening the terminal as part of the script. Never had this issue with other terminals, despite having an actual narrower terminal with them, so it does seem like something wrong with the program in how it interacts with rxvt.
Offline
Head_on_a_Stick wrote:oneleaf wrote:Any settings that can reduce verbosity?
Try adding this line to ~/.Xresources
URxvt.secondaryScreen: false
Just gave this a try and it did not fix the issue, unfortunately.
it probably won't solve the problem, but you know you have to manually merge the changes to .Xresources, right?
so each time you change the file:
xrdb -merge ~/.Xresources
then open a new urxvt.
Offline
ohnonot,
Yep, I knew to do that, but always appreciate the reminder. :-)
Offline