diff options
author | Papoteur <papoteur@mageia.org> | 2019-04-22 18:57:40 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2019-04-22 18:57:40 +0200 |
commit | 6f85cbc8b757c6e4cbd78854c2c34e66cd21e760 (patch) | |
tree | 6e0c07b1c765bd03954a19e278737b7acf63e03d | |
parent | 8bccb2ffd7be5128db86279bcba1ceb939b732fe (diff) | |
download | mageiawelcome-6f85cbc8b757c6e4cbd78854c2c34e66cd21e760.tar mageiawelcome-6f85cbc8b757c6e4cbd78854c2c34e66cd21e760.tar.gz mageiawelcome-6f85cbc8b757c6e4cbd78854c2c34e66cd21e760.tar.bz2 mageiawelcome-6f85cbc8b757c6e4cbd78854c2c34e66cd21e760.tar.xz mageiawelcome-6f85cbc8b757c6e4cbd78854c2c34e66cd21e760.zip |
Restore conditional launching according to old config file
-rwxr-xr-x | usr/bin/mageiawelcome-launcher | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/bin/mageiawelcome-launcher b/usr/bin/mageiawelcome-launcher index 6f84007..4a45237 100755 --- a/usr/bin/mageiawelcome-launcher +++ b/usr/bin/mageiawelcome-launcher @@ -3,6 +3,6 @@ import os home = os.getenv("HOME") -if (not os.path.exists(home + "/.config/mageiawelcome/norun.flag")): +if (not os.path.exists(home + "/mageiawelcome/norun.flag")): os.system("mageiawelcome") |