LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-05-2015, 08:19 PM   #1
jason41987
Member
 
Registered: Jun 2012
Posts: 148

Rep: Reputation: Disabled
making everything appear bigger


how would i go about making everything appear bigger, all fonts, all menus, everything, im using a living room television as my primary screen and id like everything to be bigger.. setting the DPI for fonts helps, but i also want bigger icons, bigger webpages in icecat/firefox, etc
 
Old 09-05-2015, 08:41 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,324
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
Many desktops provide high-contrast themes and options that allow you to increase the size of icons and make items more readable.

What distro and desktop are you using?
 
Old 09-05-2015, 08:43 PM   #3
jason41987
Member
 
Registered: Jun 2012
Posts: 148

Original Poster
Rep: Reputation: Disabled
im using archlinux with openbox, i was looking for something that would solve solve the issue more system-wide if there was one, perhaps something in display settings
 
Old 09-05-2015, 09:45 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,324
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
Generally, icons and such are managed by the desktop environment.

The sort of changes you are looking for fall under the general category of "accessibility." It's something I know of but don't know much about managing. Though the question you asked is more about "visibility" than "accessibility," "accessibility" is the heading under which you are likely to find the most useful material.

This page from the Arch wiki may help: https://wiki.archlinux.org/index.php/Accessibility

This page from the Debian wiki may also provide some useful information:

https://wiki.debian.org/accessibilit...User_Interface

I think the bit about the magnifier may speak to some of the issues you identified.

In the browsers, you might look under the "View" item in the menu. Almost all of them include an item for "Zoom," which enables you to increase or decrease the size of webpage. In many browsers, you can choose to use your own css, rather than the css of the website, and set your preferred fonts and font sizes. For example, https://support.mozilla.org/en-US/kb...e-of-web-pages

Hope this helps get you started.
 
Old 09-06-2015, 02:19 PM   #5
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Quote:
how would i go about making everything appear bigger
You could change the screen resolution.

Example:
Code:
xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 4096 x 4096
VGA-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 298mm
   1920x1080     59.93*+
   1600x1200     60.00  
   1680x1050     59.95  
   1280x1024     75.02    60.02  
   1440x900      74.98    59.89  
   1152x864      75.00  
   1024x768      75.08    70.07    60.00  
   800x600       72.19    75.00    60.32    56.25  
   640x480       75.00    72.81    60.00  
   720x400       70.08
Change to 720x480
Code:
xrandr --output VGA-1 --mode 720x400
Back to 1920x1080
Code:
xrandr --output VGA-1 --mode 1920x1080
Use your own parameters.
 
Old 09-06-2015, 02:42 PM   #6
jason41987
Member
 
Registered: Jun 2012
Posts: 148

Original Poster
Rep: Reputation: Disabled
changing the resolution is the one thing i dont want to do, since this computer will be used for gaming and that arch page offered no assistance, is there a simple tool for change fonts and DPI thats DE independant?

Last edited by jason41987; 09-06-2015 at 02:44 PM.
 
Old 09-06-2015, 05:28 PM   #7
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
how are you starting your xserver?

chances are, the file ~/.Xresources or ~/.Xdefaults is being parsed.
there you can enter dpi settings.
but afaiu that's only for fonts.
so you need a theme (gtk and openbox) that caters to your needs. icon sizes can be adjusted from within gtk themes, or inside the apps themselves.
and so on...

otoh, you tried to search the web? surely you are not the only one with this particular problem...
 
Old 09-06-2015, 09:17 PM   #8
jason41987
Member
 
Registered: Jun 2012
Posts: 148

Original Poster
Rep: Reputation: Disabled
im using lightdm and there doesnt appear to be an .Xdefaults or .Xresources file in the user folder... i was hoping to find a solution that can handle everything but it would appear i will have to do fonts and the gtk theme separately as you mentioned.. seems i can just create an .Xdefaults file and add 'Xft.dpi: 96'

im using a 42' 1360x768 plasma screen sitting about 6-8 feet away, what would the optimal DPI setting be?

Last edited by jason41987; 09-06-2015 at 09:45 PM.
 
Old 09-07-2015, 06:54 AM   #9
xamaco
Member
 
Registered: Sep 2009
Location: Bastelicaccia, Corsica
Distribution: Crux
Posts: 48

Rep: Reputation: 7
For openbox windows titles, menu, try obconf application.
For the contents of applications, it depends if they're gtk or qt based. On my openbox installation, I use lxappearance for gtk and qtconfig for qt.
 
Old 09-09-2015, 02:32 AM   #10
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by jason41987 View Post
im using lightdm and there doesnt appear to be an .Xdefaults or .Xresources file in the user folder... i was hoping to find a solution that can handle everything but it would appear i will have to do fonts and the gtk theme separately as you mentioned.. seems i can just create an .Xdefaults file and add 'Xft.dpi: 96'
have you actually tried that?
i don't use a display manager so i can't really tell you, but i'd say lightdm must have an option for sth like that...
other solution is to add the appropriate file to /etc/X11/xorg.conf.d - see here for some docs to get you started
(see DisplaySize, looks like the kind of setting your looking for)

imho this is a better solution than adjusting fonts manually, and with a little luck the change in size will also carry over to icons and widgets...
 
Old 09-09-2015, 05:49 PM   #11
jason41987
Member
 
Registered: Jun 2012
Posts: 148

Original Poster
Rep: Reputation: Disabled
i switched to xfce which does have DPI settings which seem to work pretty well for what i want, the only thing that appears small now is terminal font and xterm but that can be remedied by other means, i use xfce4s terminal the most which seems to follow my theme and DE settings quite well
 
Old 09-10-2015, 02:29 AM   #12
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
good choice.
what about the icons and window decorations? did they grow, too?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Making a partition bigger Tsukasa7 Linux - Newbie 8 10-24-2005 12:41 PM
making linux partition bigger? M O L8ingN2dust Linux - Newbie 1 03-23-2005 03:47 PM
Making the /boot partition bigger r3dhatter Linux - Newbie 28 07-12-2004 08:28 PM
Making a partition bigger rverlander Linux - General 8 07-19-2002 08:49 PM
making patitions bigger than one harddrive saavik Linux - Software 3 11-10-2001 07:59 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:40 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration