StartUp Applications not scaled on hidpi display
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
I run Ubuntu 18.04 with Gnome on a 4k hidpi monitor with 200% scale factor. If I manually run applications (e.g. Wavebox, Telegram Desktop, KeePassXC, ...) they start scaled properly and everything is fine.
However, if I add them to the startup applications, when I start the system, they start without scaling and are impossible to use. When I close the apps and restart them, they are scaled.
How do I run an app at startup with the proper scaling?
18.04 startup-applications hdpi
add a comment |Â
up vote
0
down vote
favorite
I run Ubuntu 18.04 with Gnome on a 4k hidpi monitor with 200% scale factor. If I manually run applications (e.g. Wavebox, Telegram Desktop, KeePassXC, ...) they start scaled properly and everything is fine.
However, if I add them to the startup applications, when I start the system, they start without scaling and are impossible to use. When I close the apps and restart them, they are scaled.
How do I run an app at startup with the proper scaling?
18.04 startup-applications hdpi
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I run Ubuntu 18.04 with Gnome on a 4k hidpi monitor with 200% scale factor. If I manually run applications (e.g. Wavebox, Telegram Desktop, KeePassXC, ...) they start scaled properly and everything is fine.
However, if I add them to the startup applications, when I start the system, they start without scaling and are impossible to use. When I close the apps and restart them, they are scaled.
How do I run an app at startup with the proper scaling?
18.04 startup-applications hdpi
I run Ubuntu 18.04 with Gnome on a 4k hidpi monitor with 200% scale factor. If I manually run applications (e.g. Wavebox, Telegram Desktop, KeePassXC, ...) they start scaled properly and everything is fine.
However, if I add them to the startup applications, when I start the system, they start without scaling and are impossible to use. When I close the apps and restart them, they are scaled.
How do I run an app at startup with the proper scaling?
18.04 startup-applications hdpi
edited May 15 at 15:58
![](https://i.stack.imgur.com/IfEQx.jpg?s=32&g=1)
![](https://i.stack.imgur.com/IfEQx.jpg?s=32&g=1)
K7AAY
3,73221443
3,73221443
asked May 15 at 14:15
![](https://lh5.googleusercontent.com/-gghcW58gDzg/AAAAAAAAAAI/AAAAAAAAEA0/McGpTa3Wvog/photo.jpg?sz=32)
![](https://lh5.googleusercontent.com/-gghcW58gDzg/AAAAAAAAAAI/AAAAAAAAEA0/McGpTa3Wvog/photo.jpg?sz=32)
Alessandro Muntoni
32
32
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
I had the same problem and what solve the problem for me was to startup the application with a few seconds delay.
create a bash script and add the following
#!/bin/sh
sleep 5
/usr/bin/conky
save the file and run chmod +x conky.sh
next open up gnome startup application or edit: ~/.config/autostart/conky.desktop and update the Exec/Command to:
/home/youruser/conky.sh
(Just replace conky with the application you are using)
now try logout and back in again and hopefully it should work
if it doesent work you can try increase the sleep/delay to 10 seconds.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
I had the same problem and what solve the problem for me was to startup the application with a few seconds delay.
create a bash script and add the following
#!/bin/sh
sleep 5
/usr/bin/conky
save the file and run chmod +x conky.sh
next open up gnome startup application or edit: ~/.config/autostart/conky.desktop and update the Exec/Command to:
/home/youruser/conky.sh
(Just replace conky with the application you are using)
now try logout and back in again and hopefully it should work
if it doesent work you can try increase the sleep/delay to 10 seconds.
add a comment |Â
up vote
0
down vote
accepted
I had the same problem and what solve the problem for me was to startup the application with a few seconds delay.
create a bash script and add the following
#!/bin/sh
sleep 5
/usr/bin/conky
save the file and run chmod +x conky.sh
next open up gnome startup application or edit: ~/.config/autostart/conky.desktop and update the Exec/Command to:
/home/youruser/conky.sh
(Just replace conky with the application you are using)
now try logout and back in again and hopefully it should work
if it doesent work you can try increase the sleep/delay to 10 seconds.
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I had the same problem and what solve the problem for me was to startup the application with a few seconds delay.
create a bash script and add the following
#!/bin/sh
sleep 5
/usr/bin/conky
save the file and run chmod +x conky.sh
next open up gnome startup application or edit: ~/.config/autostart/conky.desktop and update the Exec/Command to:
/home/youruser/conky.sh
(Just replace conky with the application you are using)
now try logout and back in again and hopefully it should work
if it doesent work you can try increase the sleep/delay to 10 seconds.
I had the same problem and what solve the problem for me was to startup the application with a few seconds delay.
create a bash script and add the following
#!/bin/sh
sleep 5
/usr/bin/conky
save the file and run chmod +x conky.sh
next open up gnome startup application or edit: ~/.config/autostart/conky.desktop and update the Exec/Command to:
/home/youruser/conky.sh
(Just replace conky with the application you are using)
now try logout and back in again and hopefully it should work
if it doesent work you can try increase the sleep/delay to 10 seconds.
answered Jun 26 at 12:14
Markus Helin
16
16
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%2f1036554%2fstartup-applications-not-scaled-on-hidpi-display%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