Icons too big after migration from 14.04 to 16.04
up vote
1
down vote
favorite
My machine was in 14.04 with gnome fallback
I ve started the update towards 16.04, went ok.
Now when I log in the icons are just enormous"
If I log in with guest session, it goes on Unity with correct size.
Someone knows files to erase or modify to fix that?
14.04 16.04 gnome upgrade
add a comment |Â
up vote
1
down vote
favorite
My machine was in 14.04 with gnome fallback
I ve started the update towards 16.04, went ok.
Now when I log in the icons are just enormous"
If I log in with guest session, it goes on Unity with correct size.
Someone knows files to erase or modify to fix that?
14.04 16.04 gnome upgrade
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
My machine was in 14.04 with gnome fallback
I ve started the update towards 16.04, went ok.
Now when I log in the icons are just enormous"
If I log in with guest session, it goes on Unity with correct size.
Someone knows files to erase or modify to fix that?
14.04 16.04 gnome upgrade
My machine was in 14.04 with gnome fallback
I ve started the update towards 16.04, went ok.
Now when I log in the icons are just enormous"
If I log in with guest session, it goes on Unity with correct size.
Someone knows files to erase or modify to fix that?
14.04 16.04 gnome upgrade
14.04 16.04 gnome upgrade
asked Feb 17 at 10:27
Houba
255
255
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
You can try to open unity-control-center
, then select Displays in it and set other screen Resolution (preferable native for your monitor):
from terminal with
unity-control-center display
from GUI by clicking on Gear in top right, select System settings and then Displays (you can move window by clicking Alt+F7).
or programmatically (change
'1920x1080+0+0'
below to your resolution, second part resets scaling which may be the problem too)sudo apt-get install dconf-cli
dconf write /org/compiz/profiles/unity/plugins/core/outputs "['1920x1080+0+0']"
dconf write /org/gnome/desktop/interface/scaling-factor 'uint32 0'
dconf write /org/gnome/desktop/interface/cursor-size 24
dconf write /org/gnome/desktop/interface/text-scaling-factor 1.0
dconf write /org/compiz/profiles/unity/plugins/unityshell/icon-size 48if above does not help try XRandr -
xrandr -s 1920x1080
.
If you do not have personal settings of Unity and/or GNOME you may want to backup
dconf dump / > dconf_backup
and then reset them with:
dconf reset -f /org/compiz/
dconf reset -f /org/gnome/
dconf reset -f /com/ubuntu/user-interface/
also try
unity --reset
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (sudo apt-get install gnome-panel
) and set resolution from it.
â N0rbert
Feb 17 at 20:50
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
 |Â
show 3 more comments
up vote
1
down vote
For Ubuntu 17 the following works
- Open nautilus app
- Right corner select view 'grid icon'
- Use mouse scroll to adjust thumbnail size
- Now go to desktop see the changes.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can try to open unity-control-center
, then select Displays in it and set other screen Resolution (preferable native for your monitor):
from terminal with
unity-control-center display
from GUI by clicking on Gear in top right, select System settings and then Displays (you can move window by clicking Alt+F7).
or programmatically (change
'1920x1080+0+0'
below to your resolution, second part resets scaling which may be the problem too)sudo apt-get install dconf-cli
dconf write /org/compiz/profiles/unity/plugins/core/outputs "['1920x1080+0+0']"
dconf write /org/gnome/desktop/interface/scaling-factor 'uint32 0'
dconf write /org/gnome/desktop/interface/cursor-size 24
dconf write /org/gnome/desktop/interface/text-scaling-factor 1.0
dconf write /org/compiz/profiles/unity/plugins/unityshell/icon-size 48if above does not help try XRandr -
xrandr -s 1920x1080
.
If you do not have personal settings of Unity and/or GNOME you may want to backup
dconf dump / > dconf_backup
and then reset them with:
dconf reset -f /org/compiz/
dconf reset -f /org/gnome/
dconf reset -f /com/ubuntu/user-interface/
also try
unity --reset
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (sudo apt-get install gnome-panel
) and set resolution from it.
â N0rbert
Feb 17 at 20:50
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
 |Â
show 3 more comments
up vote
1
down vote
accepted
You can try to open unity-control-center
, then select Displays in it and set other screen Resolution (preferable native for your monitor):
from terminal with
unity-control-center display
from GUI by clicking on Gear in top right, select System settings and then Displays (you can move window by clicking Alt+F7).
or programmatically (change
'1920x1080+0+0'
below to your resolution, second part resets scaling which may be the problem too)sudo apt-get install dconf-cli
dconf write /org/compiz/profiles/unity/plugins/core/outputs "['1920x1080+0+0']"
dconf write /org/gnome/desktop/interface/scaling-factor 'uint32 0'
dconf write /org/gnome/desktop/interface/cursor-size 24
dconf write /org/gnome/desktop/interface/text-scaling-factor 1.0
dconf write /org/compiz/profiles/unity/plugins/unityshell/icon-size 48if above does not help try XRandr -
xrandr -s 1920x1080
.
If you do not have personal settings of Unity and/or GNOME you may want to backup
dconf dump / > dconf_backup
and then reset them with:
dconf reset -f /org/compiz/
dconf reset -f /org/gnome/
dconf reset -f /com/ubuntu/user-interface/
also try
unity --reset
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (sudo apt-get install gnome-panel
) and set resolution from it.
â N0rbert
Feb 17 at 20:50
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
 |Â
show 3 more comments
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can try to open unity-control-center
, then select Displays in it and set other screen Resolution (preferable native for your monitor):
from terminal with
unity-control-center display
from GUI by clicking on Gear in top right, select System settings and then Displays (you can move window by clicking Alt+F7).
or programmatically (change
'1920x1080+0+0'
below to your resolution, second part resets scaling which may be the problem too)sudo apt-get install dconf-cli
dconf write /org/compiz/profiles/unity/plugins/core/outputs "['1920x1080+0+0']"
dconf write /org/gnome/desktop/interface/scaling-factor 'uint32 0'
dconf write /org/gnome/desktop/interface/cursor-size 24
dconf write /org/gnome/desktop/interface/text-scaling-factor 1.0
dconf write /org/compiz/profiles/unity/plugins/unityshell/icon-size 48if above does not help try XRandr -
xrandr -s 1920x1080
.
If you do not have personal settings of Unity and/or GNOME you may want to backup
dconf dump / > dconf_backup
and then reset them with:
dconf reset -f /org/compiz/
dconf reset -f /org/gnome/
dconf reset -f /com/ubuntu/user-interface/
also try
unity --reset
You can try to open unity-control-center
, then select Displays in it and set other screen Resolution (preferable native for your monitor):
from terminal with
unity-control-center display
from GUI by clicking on Gear in top right, select System settings and then Displays (you can move window by clicking Alt+F7).
or programmatically (change
'1920x1080+0+0'
below to your resolution, second part resets scaling which may be the problem too)sudo apt-get install dconf-cli
dconf write /org/compiz/profiles/unity/plugins/core/outputs "['1920x1080+0+0']"
dconf write /org/gnome/desktop/interface/scaling-factor 'uint32 0'
dconf write /org/gnome/desktop/interface/cursor-size 24
dconf write /org/gnome/desktop/interface/text-scaling-factor 1.0
dconf write /org/compiz/profiles/unity/plugins/unityshell/icon-size 48if above does not help try XRandr -
xrandr -s 1920x1080
.
If you do not have personal settings of Unity and/or GNOME you may want to backup
dconf dump / > dconf_backup
and then reset them with:
dconf reset -f /org/compiz/
dconf reset -f /org/gnome/
dconf reset -f /com/ubuntu/user-interface/
also try
unity --reset
edited Feb 18 at 9:57
answered Feb 17 at 11:41
N0rbert
16.6k33378
16.6k33378
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (sudo apt-get install gnome-panel
) and set resolution from it.
â N0rbert
Feb 17 at 20:50
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
 |Â
show 3 more comments
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (sudo apt-get install gnome-panel
) and set resolution from it.
â N0rbert
Feb 17 at 20:50
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Thanks, will try but the window will be so big that I will not be able to navigate into it. But will keep you posted.
â Houba
Feb 17 at 15:02
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
Updated answer with other variants.
â N0rbert
Feb 17 at 16:20
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
The above commands do not change anything. The resolution is set to the 1920x1080 (max) for the screen I have.
â Houba
Feb 17 at 20:45
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (
sudo apt-get install gnome-panel
) and set resolution from it.â N0rbert
Feb 17 at 20:50
Very strange, I can't understand what happens. How it is possible - big interface parts with correct high resolution... Only icons are big? Or windows are big too? You can try to install GNOME FlashBack (
sudo apt-get install gnome-panel
) and set resolution from it.â N0rbert
Feb 17 at 20:50
1
1
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
Sorry for the delay but installing dconf and performing the reset worked as instructed.
â Houba
Mar 4 at 19:10
 |Â
show 3 more comments
up vote
1
down vote
For Ubuntu 17 the following works
- Open nautilus app
- Right corner select view 'grid icon'
- Use mouse scroll to adjust thumbnail size
- Now go to desktop see the changes.
add a comment |Â
up vote
1
down vote
For Ubuntu 17 the following works
- Open nautilus app
- Right corner select view 'grid icon'
- Use mouse scroll to adjust thumbnail size
- Now go to desktop see the changes.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
For Ubuntu 17 the following works
- Open nautilus app
- Right corner select view 'grid icon'
- Use mouse scroll to adjust thumbnail size
- Now go to desktop see the changes.
For Ubuntu 17 the following works
- Open nautilus app
- Right corner select view 'grid icon'
- Use mouse scroll to adjust thumbnail size
- Now go to desktop see the changes.
answered Apr 27 at 6:18
user315042
111
111
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1007029%2ficons-too-big-after-migration-from-14-04-to-16-04%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password