How do I auto start X application in wayland?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I just installed Arch with gnome and wayland. Never used wayland before and I noticed it poses a few problems when I try to run tilda terminal.
I can run tilda using this command:
GDK_BACKEND=x11 tilda
But, I want to run tilda on autostart. I've tried to solve a couple of ways. The first thing I did was add this line at the start of the tilda.desktop:
GDK_BACKEND=x11
Then this:
env GDK_BACKEND=x11
And then this line:
env GDK_BACKEND=x11 tilda
However, none of those worked. So, i tried to make a really simple bash script calling the tilda terminal and have that run as a startup application
#!/bin/bash
GDK_BACKEND=x11 tilda
Sadly, this did not work either.
I am confident there should be a way to force tilda to autostart, I'm just not sure exactley how.
terminal x11 wayland autostart tilda
add a comment |Â
up vote
1
down vote
favorite
I just installed Arch with gnome and wayland. Never used wayland before and I noticed it poses a few problems when I try to run tilda terminal.
I can run tilda using this command:
GDK_BACKEND=x11 tilda
But, I want to run tilda on autostart. I've tried to solve a couple of ways. The first thing I did was add this line at the start of the tilda.desktop:
GDK_BACKEND=x11
Then this:
env GDK_BACKEND=x11
And then this line:
env GDK_BACKEND=x11 tilda
However, none of those worked. So, i tried to make a really simple bash script calling the tilda terminal and have that run as a startup application
#!/bin/bash
GDK_BACKEND=x11 tilda
Sadly, this did not work either.
I am confident there should be a way to force tilda to autostart, I'm just not sure exactley how.
terminal x11 wayland autostart tilda
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running withps x | grep tilda
.
â mviereck
Mar 25 at 18:04
1
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I just installed Arch with gnome and wayland. Never used wayland before and I noticed it poses a few problems when I try to run tilda terminal.
I can run tilda using this command:
GDK_BACKEND=x11 tilda
But, I want to run tilda on autostart. I've tried to solve a couple of ways. The first thing I did was add this line at the start of the tilda.desktop:
GDK_BACKEND=x11
Then this:
env GDK_BACKEND=x11
And then this line:
env GDK_BACKEND=x11 tilda
However, none of those worked. So, i tried to make a really simple bash script calling the tilda terminal and have that run as a startup application
#!/bin/bash
GDK_BACKEND=x11 tilda
Sadly, this did not work either.
I am confident there should be a way to force tilda to autostart, I'm just not sure exactley how.
terminal x11 wayland autostart tilda
I just installed Arch with gnome and wayland. Never used wayland before and I noticed it poses a few problems when I try to run tilda terminal.
I can run tilda using this command:
GDK_BACKEND=x11 tilda
But, I want to run tilda on autostart. I've tried to solve a couple of ways. The first thing I did was add this line at the start of the tilda.desktop:
GDK_BACKEND=x11
Then this:
env GDK_BACKEND=x11
And then this line:
env GDK_BACKEND=x11 tilda
However, none of those worked. So, i tried to make a really simple bash script calling the tilda terminal and have that run as a startup application
#!/bin/bash
GDK_BACKEND=x11 tilda
Sadly, this did not work either.
I am confident there should be a way to force tilda to autostart, I'm just not sure exactley how.
terminal x11 wayland autostart tilda
edited Mar 24 at 8:21
asked Mar 24 at 0:55
discipulus
264
264
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running withps x | grep tilda
.
â mviereck
Mar 25 at 18:04
1
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24
add a comment |Â
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running withps x | grep tilda
.
â mviereck
Mar 25 at 18:04
1
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running with
ps x | grep tilda
.â mviereck
Mar 25 at 18:04
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running with
ps x | grep tilda
.â mviereck
Mar 25 at 18:04
1
1
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
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%2funix.stackexchange.com%2fquestions%2f433188%2fhow-do-i-auto-start-x-application-in-wayland%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
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');
);
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');
);
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
Do you call tilda with a key like shift+F1? Then you can call it only if your mouse cursor is above an Xwayland window, e.g. xterm or firefox. Check whether tilda is running with
ps x | grep tilda
.â mviereck
Mar 25 at 18:04
1
Compare unix.stackexchange.com/questions/388118/â¦
â mviereck
Mar 25 at 18:24