Ubuntu :: 11.4 Classic - Move Down A Single Line With The New Scrollbars?
May 6, 2011
I would have thought the arrows at the edges of the new scrollbar move up/down by line and the grey pads of space between the separator would move by pg/up or down. All seems correct with the exception of the arrows to move up/down.I look around through code, manuals and pdfs and such often and used to the use arrow pointers at the top and bottom of the old scrollbar style to move down or up by line all with the mouse....now with the new scroll bar I find myself struggling all the time for this type of simple operation as it seems the arrows in the overlay scrollbar perform a pgDown/pgUp operation not a move down/up line....anyone know how?
PS - If anyone is curious on how to best to test this on your own, a simple test I did was to create a text file of line numbers with the following command:
seq 1 200 > numbers.txt
View 4 Replies
ADVERTISEMENT
Apr 12, 2011
How do I remove the overlay scrollbars, and get the classic scrollbars?
I've tried code...
Also it is possible to remove those resize triangles in the lower right corners of resizeable windows?
View 1 Replies
View Related
May 30, 2011
Is it possible to get the gnome style scrollbars on the classic desktop on 11.04? The new disappearing slider is bugging me. In particular I like clicking on the scrollbar below the slider to advance.
View 6 Replies
View Related
Dec 9, 2010
I have a many text files that have XML tags all shoved into 1 line. I want to create a new file that splits each XML tag onto a new line. code...
View 3 Replies
View Related
May 21, 2011
I like 11.04 with Unity however I would like to find a method of managing workspaces with mouse (not keyboard) which gives constant visual feedback and is faster than using the launcher bar, which although not 'slow', takes time to appear and it then takes time to locate the (non movable) desktop switcher item.I happily adopt most of what 11.04 (Unity) offers, however, I really still miss the good visual feedback and the single click action that the lower panel (classic) desktop switcher used. Is there a way of me using some item in unity which is closely similar?
View 3 Replies
View Related
Nov 22, 2010
I have 10 files of .dat formatsayA MCDR .datB MCDR .datand so one upto 10 dat filehow i convert these 10 dat files to txt files using single command or script
View 6 Replies
View Related
Jul 26, 2011
I'm using my home server to netboot into live CDs. To summarize that article, netbooting a liveCD system involves passing an NFS host:/path in kernel's command line, which is subsequently mounted as /cdrom on the live system. The article mentions copying the contents of the iso image to a place on the hard drive, but I see no reason for this, since the contents need to be read-only anyway, which is easy to achieve by mounting the iso through a loop device:
Code:
# mount
...
/dev/loop0 on /mnt/kubuntu-lucid-amd64 type iso9660 (ro)
/dev/loop1 on /mnt/kubuntu-natty-amd64 type iso9660 (ro)
[code]....
Now, I am using NFS to mount a regular (rw, HDD) directory which I use as a network drive and I can mount any subdirectory and still access all the files within, ie. when I export /data on the server, I can still mount /data/downloads on the client:
Code:
server:# exportfs
/data 192.168.1.4/32
client:$ sudo mount -t nfs 192.168.1.1:/data/downloads /mnt/netshare
[code]....
Is it possible to export just /mnt and be able to mount any/all of the subdirectories? NFS doesn't like going across multiple file systems:
Code:
server:# ls -al /mnt/kubuntu-natty-i386/
total 3532
dr-xr-xr-x 11 root root 4096 2011-04-27 11:29 .
drwxr-xr-x 7 root root 4096 2011-07-25 21:46 ..
[code].....
When I try to export just /mnt and mount /mnt/kubuntu-natty-i386 on the client, the mount succeeds but the mounted directory is empty.
View 1 Replies
View Related
Nov 1, 2010
This is more of a bash or scripting How do you update a single line of an output in a bash script. I have had to do the:
[Code]..
Is there a way to clear only a single line of output? my goal is to mimic a single line animation, much like the '=>' '==>' ' ===>' we have all seen in other programs.
View 3 Replies
View Related
Jul 31, 2010
Is there a way to reposition the Gnome panels from the command line?
View 9 Replies
View Related
Sep 15, 2010
I liked the idea of the "cosmos" screensaver/desktop, but wanted to add my own pictures to the application. I navigated to /usr/share/backgrounds/cosmos and tried to drag and drop. I quickly found that I did not have permission to do this.
I googled my problem and found some command line tutorials telling me to sudo cp. My problem is that I have about 30 pics that I want to move in there, and I don't think I can just move the directory, they have to be in that folder as the pictures themselves.
I don't really feel like typing the cp line multiple times with multiple randomly named image files.
Is there a way to have the command line cp all of my files from one directory to another?
View 4 Replies
View Related
May 3, 2011
I don't know if you've been as shocked as i was when using 11.04, but i found the new "overlay scrollbars" completely useless.
what is the logic in hovering in one place to make an invisible scrollbar appear on the right-hand side of the mouse pointer and then move to that scrollbar and use it (if you're lucky enough the scrollbar doesn't disappear as you move towards it)? I've been struggling with that thing for 10 minutes and then i had enough already.
By all means, innovation is great, it's cool to think of new ways to use computers etc. But please don't make default on a distro something as dodgy as this. When i see these scrollbars i have a hard time believing it was widely tested: has there been a poll at all to get user feedback? New things should not be implemented for the sake of being new or different. In my opinion, if something doesn't really improve the OS or desktop environment, then it's not worth making it default.
View 3 Replies
View Related
Dec 30, 2010
I have a text file called namelist.wps. In this file there is a line that reads:Code: start_date = '2010-12-26_12:00:00', '2010-12-26_12:00:00', I have to automatically update the year, month, and day of month. I set values for the year, month, and day of month using the following code in a c-shell script:Code: set y1 = `date +%Y`set m1 = `date +%m`set d1 = `date +%d` After I do this, how do I update year, month, and day of month, without changing any of the other lines in the namelist.wps file?
View 2 Replies
View Related
Jan 31, 2010
sed move to prev line if match
file:
desired result:
View 4 Replies
View Related
Feb 1, 2011
got a situation where if i process a command i get a numeric output something like below:
for example:
# cat example.txt
856589
856470
987866
656658
876897
now i want to see this output in single line like below:
856589 856470 987866 656658 876897
how do i get this?
View 10 Replies
View Related
Jul 18, 2011
I have some code written in VHDL that looks as follows:
Code:
foo = "bar";
foo <= 'bar',
[code]...
View 1 Replies
View Related
Mar 10, 2011
How do i take a single line of input from the user in a shell script?
View 3 Replies
View Related
Dec 6, 2010
I am using Vi editor for editing and configuring my file.I am facing a little problem when there is long file like 3000 lines. Normally i use
Code:
:set number
in vi editor to visible my line number.The problem is when i have to go in the top of the file like say line number one I use k for it and to move down I use j which is too much time consuming. How can i jump directly my cursor to line number 2333 or line number 2600.
View 4 Replies
View Related
Apr 23, 2011
I've got a bash script I'm using to download a text file list of links via axel. What I'd like to do is automate the movement of completed links in the for loop when axel has successfully completed the download. This is what I've got. I can figure that I can just echo append the line to a new file, but what is the easiest way to delete the line with the link I just downloaded?
Code:
#!/bin/bash
for i in $( cat $1); do
axel --alternate --num-connections=6 $i
export RC=$?
[code]....
View 14 Replies
View Related
Jun 7, 2011
if anyone is familiar with conky and have managed to put horizontal scrollbars in a conky window that contains a 'wall of text', and if so.. how? I cant seem to make it.
View 2 Replies
View Related
Jul 16, 2011
How do I move around select a file and move or copy it. All tutorials I have seen are not simple enough.
View 7 Replies
View Related
Sep 21, 2010
I want to know the command, so that i can move back two days i.e. all the changes i made during the two day is rolled back .
View 5 Replies
View Related
Feb 3, 2010
I need to create a single line of output from multiple and variable lines of input in a Linux bash shell script.
My input file looks like this:
Where there may be any number of umsecondaryphonenumber lines; if there is not a umsecondaryphonenumber line for a telephonenumber, I don't want to write any output.
So, the output file should look like:
The script I have so far is:
My question is - how do print each of the elements of an array in one record - i.e. what do I put in place of howdoiprintarray?
View 2 Replies
View Related
Sep 26, 2010
I have a pipe delimited flat file, field 27 is price. I would like to move items marked sold to a new file every couple months.
awk -F"|" '$27 == "SOLD" {print $0}' awktest2.data >> awkout2.data
Allows me to write line to new file but I need to delete the original line, I also want to make sold case insensitive tried [Ss][Oo] with no luck
View 4 Replies
View Related
Apr 30, 2011
Is there any way to change the window scrollbars in 11.04 from the frankly annoying minimalist orange strip to the far more user friendly large bar with clickable arrows top and bottom?
I'm using Ubuntu Classic Desktop...if I really couldn't get on with this scrollbar...would I actually have to go back to the previous OS release?
View 1 Replies
View Related
Feb 14, 2010
No matter how many times I update or install new flash plugins in firefox, I always wind up with 2 versions of the 'Shockwave Flash' plugin. The first is the prevous version of Adobe, the second is the current version of either Adobe, Gnash or Swfdec. I use yum to keep my packages in synch. When a new version of Adobe comes though, it erases the older version of the currently installed plugin, keeps the newer currently installed version, and installs itself as the new version, both versions enabled.
Hope that paragraph makes sense to you, it gave me a headache to write. Further, they must both be enabled for any of them to work, and which ever I use the video is slow, choppy and prone to pausing for no apparent reason. The CPU usage is always pegged to the roof and the sound is often out of synch.
What I'm wondering is whether or not this is the normal situation or if I'm doing something wrong? I've been playing with Ubuntu and have noticed that only one version installs at one time, and the video playback is much better, if still not exactly smooth.
how to keep the scrollbars at the side and bottom of Firefox a contant width? They seem to change with the Full Zoom Level of NoSquint, which is a bit of a pain.
View 5 Replies
View Related
Apr 22, 2011
I see on the website URl...screenshots number 5 and 6 -- what is used to to get these style of scrollbars? When I launch Opera I get a very ugly scrollbar that does not fit the look of the wm whatsoever.
View 1 Replies
View Related
Jan 15, 2011
I am intended to simply make printf give "001 002 003 004 006.... 150" but with the single command line of SH (dash) ... not easy ...
Code:
tucholsky:~$ seq 1 1 150 | sed 's/([0-9]+).*/1/g' | tr '
' ' '
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
[code]...
For the geeks, which distro/version is it, based on the code above
View 6 Replies
View Related
Oct 16, 2010
I have a set of lines as ahown below:
Leon went to school
Leon came back from school..
Leon had dinner...
I have to replace the line containing "dinner" by a single string LUNCH...
View 2 Replies
View Related
Jun 11, 2010
I have a folderA that contains folderB that contains a lot of files. I would like to get rid of folderB, but not its contents. I want those contents to be inside of folderA. How can I accomplish this on the commandline?
View 2 Replies
View Related
Oct 13, 2010
I have question about the UNIX sockets. my goal is to connect multiple sockets from a single client to a single server and keep them open...I'm not sure if that is possible to create or not. Do you have any suggestion or an example of code?
View 1 Replies
View Related