Ubuntu :: Toolbar Size And Spacing In Lucid?

May 5, 2010

I upgraded to Lucid today and noticed that toolbar spacing/sizing is HUGE. In eclipse it is making my once single line toolbar wrap down to too. There is a ton of waisted space here.

View 5 Replies


ADVERTISEMENT

Ubuntu :: Configure Spacing Between Icons In Toolbar In Top Right Tray Of Natty

May 19, 2011

I want to configure the spacing between the icons in toolbar in the top right tray of Natty (so it looks more like gnome 3). Does anyone know where these values are stored? I checked ccsm and gconf.

View 4 Replies View Related

Ubuntu :: Gnome / Metacity / X After Lucid Upgrade - No Toolbar - Couldn't Move / Resize / Close

May 2, 2010

System:
Gateway box
P4 3GHz processor
1 GB RAM
one 40 GB Western Digital IDE Hard drive
one 500 GB Western Digital IDE Hard drive
NVidia-GeForce FX 5200 DDR 128MB Video Card
Hauppauge HVR-1600 Tuner Card (with accompanying remote of unknown model #)
Creative Sound Blaster X-Fi Card

Ran Lucid upgrade on a mythbuntu box on Friday. On startup, though, the desktop looked quite odd - in fact, I didn't even know it was my desktop at first. It was a small white terminal 'window' in the upper left corner of a black screen. My mouse was responsive, because I had to mouse over the 'window' before I could type. I say 'window' because it had no toolbar, and I couldn't move, resize, or close it. No top or bottom panels on Gnome. it was so unrecognizable I didn't initially think it was my desktop. I assumed it was nvidia drivers, and spent a long time making sure they were installed - they do not seem to be the problem. After searching forums/internets, found several pages telling people to rename/move/delete .gnome, .gnome2, etc and gnome should revert to default. Problem persists. I can open gedit or firefox by running from command line, but when I close those windows, the image of those windows remain as part of the background.....

View 4 Replies View Related

Ubuntu :: Locked Toolbar - New Position For The Toolbar That Sits At The Top Of The Screen

Mar 30, 2011

I have been working for the last three months with Ubuntu 10 on a destop. Doing just fine and loving it. I decided to try a new position for the toolbar that sits at the top of the screen. I did a right click and moved it to the right side of the scree, didn't like the look of that. Right click on the bar and moved it to the left, didn't like that either, so moved it to the bottom. having done all that I thought I could put it back at the top but alas, I can not right click on the Toolbar.

It seems as though the two bars are fighting each other at the bottom of the screen.I would like to go back to the default position at the top of the screen. I do have a terminal window available to me on the desktop so if I could find out the command line to type in, I should be able to reset my tool bar. Being new I have no idea what this command would be.

View 2 Replies View Related

Ubuntu Installation :: Download Size When Upgrading To Lucid?

May 1, 2010

how many MBs need to be downloaded when I upgrade to 10.04 from an up-to-date 9.10?

View 7 Replies View Related

Ubuntu :: Getting Extra Spacing In Chromium?

Apr 7, 2010

For anyone using Chromium [version 5.0.370.0 (43799) Ubuntu] from the daily PPA, are you seeing extra-space above the tabs?

View 8 Replies View Related

Ubuntu :: Line Spacing In Abiword?

May 11, 2010

Pt.1: Is this the right place for a question about Abiword? Pt.2: How does one set the line spacing in Abiword, wherever? Pt.3: . . . on an Asus eee netbook running Windows?

View 9 Replies View Related

Ubuntu :: Terminal Character Spacing Flawed?

Jul 11, 2010

Running Ubuntu 9.04 here and having some frequent problems in the terminal. The characters have "smooshed" together so some strings are unreadable. This happened randomly when I opened terminal and has been happening ever since. I don't know what the problem is.

BTW: I checked forums, two topics on this; 0 answers, go figure.

View 2 Replies View Related

Ubuntu :: Unwanted Double-spacing In Evolution

Feb 2, 2011

Evolution is presenting many incoming email messages as double-spaced when they weren't written that way. The unwanted double-spacing is also retained in replies, which show the original messages as having repeated carriage returns.How can this be prevented so that Evolution renders the messages as they were written?

View 1 Replies View Related

Ubuntu :: Reduce Notification Area Icon Spacing?

May 22, 2010

It is mentioned in bugs and other posts, but they are old and don't provide an answer. On my small screen, the extra horizontal spacing/padding between the icons in the notification area takes up far, far too much space.Is there a way to reduce the spacing/padding. Preferably, I would put it back to what it was in Karmic which I think was about half the current spacing/padding.

View 3 Replies View Related

Ubuntu Multimedia :: Completely Copy A CD Including Track Spacing?

Jan 7, 2010

I have some cds that have tracks that run right into each other (ie one finishes and seamlessly moves into the next one without pause). How can I backup my cds retaining their original sound?Prior to Ubuntu days, I used to just rip in mediaplayer in windows and then use then use that playlist to burn to a cd.

View 1 Replies View Related

Software :: Urxvt Config For Font Spacing?

May 30, 2010

I have been mucking around with this for a couple of days and finally got Urxvt set with transparency and font spacing like I want. Does anyone else use Urxvt?

View 3 Replies View Related

Programming :: Optimizing The Spacing Of A Mesh Containing A Given Set Of Points?

Jan 15, 2011

I tried to summarize the this as best as possible in the title. I am writing an initial value problem solver in the most general way possible. I start with an arbitrary number of initial values at arbitrary locations (inside a boundary.) The first part of my program creates a mesh/grid (I am not sure which is the correct nuance), with N points total, that contains all the initial values. My goal is to optimize the mesh such that the spacing is as uniform as possible. My solver seems to work half decently (it needs some more obscure debugging that is not relevant here.)

I am starting with one dimension. I intend to generalize the algorithm to an arbitrary number of dimensions once I get it working consistently. I am writing my code in fortran, but feel free to reply with pseudocode or the language of your choice.Allow me to elaborate with an example:Say I am working on a closed interval [1,10]

xmin=1
xmax=10

Say I have 3 initial points: xmin, 5 and xmax

num_ivc=3
known(num_ivc)=[xmin,5,xmax] //my arrays start at 1. Assume "known" starts sorted

I store my mesh/grid points in an array called coord. Say I want 10 points total in my mesh/grid.

N=10
coord(10)

Remember, all this is arbitrary--except the variable names of course. The algorithm should set coord to {1,2,3,4,5,6,7,8,9,10} Now for a less trivial example:

num_ivc=3
known(num_ivc)=[xmin,5.5,xmax
or just
num_ivc=1
known(num_ivc)=[5.5]

Now, would you have 5 evenly spaced points on the interval [1, 5.5] and 5 evenly spaced points on the interval (5.5, 10]? But there is more space between 1 and 5.5 than between 5.5 and 10. So would you have 6 points on [1, 5.5] followed by 4 on (5.5 to 10]. The key is to minimize the difference in spacing.I have been working on this for 2 days straight and I can assure you it is a lot trickier than it sounds. I have written code that

only works if N is large
only works if N is small
only works if it the known points are close together

[code]....

So as you can see, I have coded the gamut of almost-solutions. I cannot figure out a way to get it to perform equally well in all possible scenarios (that is, create the optimum spacing.)

View 3 Replies View Related

Programming :: Is Spacing As Used Non-factor When Declaring Pointers?

Jul 3, 2010

I've seen all three uses:

type * pointer
type *pointer
type* pointer

Are these 3 forms essentially the same, i.e., is the spacing as used here a non-factor when declaring pointers?

View 2 Replies View Related

Debian :: Some Apps Have Strange Spacing In Options Menus

Oct 14, 2015

URl...how wide are the spaces between these entries. A quick research shows that this affects only certain apps such as gnome-terminal or Anjuta, but doesn't affect for example Synaptic - my first thought was that it's related to these using GTK3, but now I can see it's not that. This is not theme-related as it appears no matter what theme I choose. No results by googling.

View 2 Replies View Related

Ubuntu :: Open/Libre Office And Microsoft Word: Text Spacing And Display

Aug 6, 2011

I have Ubuntu 10.10 and Open Office 3.2.1. I guess that this problem may affect Libre Office too, but I will be happy to be proved wrong about that. I am editing a document that was originally produced in Microsoft Word (the standard .doc format). It is a form produced by a national organisation and it has to be sent back to them, and when submitted it has to be no longer than two A4 pages. It contains a series of headings and (expanding) text boxes for content.

In order to be sure about the length, I did most of the editing with Microsoft Word on my wife's laptop. On that machine, and on a PC that has a different version of Word, the document fits exactly within the two-page limit. But on my laptop, using Open Office, it appears considerably longer, taking up two-and-a-half pages. Why is this, and can anything be done to correct it? Open Office appears to be using the same fonts as Microsoft Word - the font names are the same, anyway - and the font sizes are the same, yet the text appears to take up more of the page display.

View 4 Replies View Related

Ubuntu :: Can Not See Toolbar On Desktop

May 9, 2011

ı download compiz fasion..and ı change something..when ı change something on compiz then ı can not see my toolbar on my desktop .there is nobody on my desktop.because of that ı can not firefo ,command screen.

View 4 Replies View Related

Hardware :: Partition Size Detected By Testdisk Bigger Than Disk Size

Mar 17, 2011

a client brought in an 160GB external HDD and wanted to get the files off it, there appeared to be no partitions on the disk but i thought it may have been formatted to use the whole disk. I tried to mount it as the various FS types the client thought it may have been to no avail.

I ran testdisk on it which told me that it previously had a mac partition table and a 210GB partition on it (which is larger than the disk) could anyone enlighten me as to whether or not this is even possible, and if so how could i retrieve the data?

View 2 Replies View Related

Ubuntu :: Can't Disable Navigation Toolbar

May 12, 2010

I am using Tiny Menu extension on my firefox so that I have to disable Navigation toolbar. I do so but everytime when I reopen the firefox I see that it is active again. What can I do? I am usinng firefox 3.6.3 on my ubuntu 10.04 machine(upgraded from 9.10).

View 3 Replies View Related

Ubuntu :: Firefox Addons Don't Appear In Toolbar?

Jun 16, 2010

I have Adblock and a bunch of other add-ons installed on Firefox. When I boot up and then start Firefox- the addon icons appear in/on Firefox's tool bar.

IF....I close Firefox and start it again the addon icons aren't on the tool bar or, like Ghostery, at the bottom of the screen...I think it's called the status bar.

View 1 Replies View Related

Ubuntu :: Restore Icons To Toolbar

Nov 4, 2010

I have managed to delete the DropBox and network applet icons from the upper tool bar in Ubuntu 10.10. I have not been successful in figuring out how to restore them. how to restore them.

View 1 Replies View Related

Ubuntu :: NBR Date Has Gone Missing From Toolbar At Top

Jan 11, 2011

Since I've switched to 10.10 NBR the date has gone missing from the toolbar at the top. Everything is fine when I click the time, I still get the calendar and everything. They probably just moved it away to save space up there but I appreciate always having the date easily visible.I've searched through all the personalization options, but I can't seem to figure out how to have the date still showing right next to the time like it used to.

View 2 Replies View Related

Ubuntu :: Create Win Xp Taskbar Like Toolbar?

Mar 26, 2011

I want to know whether there is any way to create a toolbar just like windows taskbar toolbar, in which i can place my music folder and click on it to see the sub-folders-tree. Like this one:-

View 9 Replies View Related

Ubuntu :: Can Customize The Abiword Toolbar

May 13, 2011

Is it possible to drag and drop the icons you want from the standard and formatting toolbars onto just one toolbar? then I can claim some more vertical space?What do most people here use on ubuntu? Abiword or Writer?

View 2 Replies View Related

Software :: Xsane Reduces Size Of Image Of Scanned Page - How To Get Back To Full Size?

Nov 12, 2010

Ubuntu 10.04, xsane 0.996, Brother MFC 240c scanner.I just finished writing a long dissertation on my problem with this scanning environment (which I will spare you). In a nutshell the resulting image, when printed, is smaller than the original document. In writing my dissertation for this post I determined that the cause of the issue is that xsane believes I am scanning an 8.5 x 14 inch document when I am in fact scanning an 8.5 x 11 letter. So the question is... can I change the size to 8.5 x 11? and if so, how? I have not found anything in the xsane Preferences.

View 7 Replies View Related

Debian Multimedia :: How To Change Icons Size And Gaps Size

Oct 22, 2015

today I upgraded via official testing repository Gnome to version 3.18. After this, icons on desktop and nautilus are bigger, than before. Next thing, gaps between icons are smaller than before. I tried change theme to default (Adwaita), then run gtk-update-icon-cache, but without result.

Normal view - icons are big for this view. URL....

Small view - icons are still big for this view. URL...

How can I change icons size and gaps size? Or is it bug for this version?

View 2 Replies View Related

Fedora :: Re-size Logical Volume And Then Re-size File System?

Jan 19, 2011

is lvresize with --resizefs options re-size the Logical Volume and then re-size the file system? i mean we don't need to use resize2fs?I looked at man pages but it doesn't explain this option.

View 3 Replies View Related

OpenSUSE Hardware :: Document Size Incorrect - How To Get Correct Size

Jun 8, 2011

Have just installed Lexmark s605 printer on wireless network, printer works ok but when i print a document even though it is showing the correct size on 'print preview', the printed output is on the page is tiny and and 90deg rotated, I've tried various drivers from the Lexmark website, and also messing about in printer settings but nothing seems to make any difference.

View 3 Replies View Related

Red Hat / Fedora :: Inode Table Size And File System Size

Dec 14, 2010

How can we find the maximum size of the inode table and what decides it, and how the maximum size of volume of file system is decided ?

View 4 Replies View Related

Ubuntu :: Amarok Toolbar Icons Disappeared?

Feb 7, 2010

I had been using Amarok 1.4 with no problems, but somehow in trying to fix the 'Launching HTTP Cache' bug, I made the Amarok toolbar icons disappear and be replaced with an image of a page. The only thing I did was install qt3-qtconfig and systemsettings, then removed them because they were not able to help me fix the HTTP cache bug, and they also altered my pointer to KDE-style. After removal and a system restart, Amarok looks like the screenshot I took. how to get the icons back?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved