Correct the autostart scripts

With disown the applications are running in the wrong context and when I
    for example open a link it doesn't open in the browser.
This commit is contained in:
Andreas Zweili 2022-04-17 20:44:40 +02:00
parent fa27a49305
commit 1c08608250
4 changed files with 4 additions and 4 deletions

View File

@ -4,5 +4,5 @@
keeweb
];
home.file.".config/qtile/autostart.d/99_keeweb.sh".source = ./keeweb.sh;
home.file.".config/qtile/autostart.d/keeweb.sh".source = ./keeweb.sh;
}

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
echo "start keeweb"
keeweb & disown
nohup keeweb > ~/.local/share/nohup.out

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
echo "start signal"
signal-desktop & disown
nohup signal-desktop > ~/.local/share/nohup.out

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
echo "start telegram"
telegram-desktop & disown
nohup telegram-desktop > ~/.local/share/nohup.out