diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2021-08-17 06:41:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2021-08-17 06:41:54 +0200 |
commit | e605fe5dffe686241847c67166fe2414b48ee2a8 (patch) | |
tree | 5b506de0a4faa0506d0cf053af8e9d7184aa59bf /src/daemon.vala | |
parent | 6617f5ee51c94d05028ebceb3177ec0e3a87e78d (diff) | |
parent | 6a2a889a6de6b45fcc21e0050763858768610952 (diff) |
Merge branch 'release/debian/0.7.3-1'debian/0.7.3-1
Diffstat (limited to 'src/daemon.vala')
-rw-r--r-- | src/daemon.vala | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/daemon.vala b/src/daemon.vala index ba3ae91..6bdf2d5 100644 --- a/src/daemon.vala +++ b/src/daemon.vala @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// Copyright 2011-2018 Simon Schneegans +// Copyright 2011-2021 Simon Schneegans // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -32,13 +32,13 @@ namespace GnomePie { public class Daemon : GLib.Application { ///////////////////////////////////////////////////////////////////// - /// The current version of Gnome-Pie + /// The current version of Gnome-Pie. ///////////////////////////////////////////////////////////////////// public static string version; ///////////////////////////////////////////////////////////////////// - /// Varaibles set by the commend line parser. + /// Variables set by the command line parser. ///////////////////////////////////////////////////////////////////// public static bool disable_header_bar = false; @@ -46,7 +46,7 @@ public class Daemon : GLib.Application { ///////////////////////////////////////////////////////////////////// - /// true if init_pies() has been called already + /// true if init_pies() has been called already. ///////////////////////////////////////////////////////////////////// private bool initialized = false; @@ -55,7 +55,7 @@ public class Daemon : GLib.Application { ///////////////////////////////////////////////////////////////////// public static int main(string[] args) { - version = "0.7.2"; + version = "0.7.3"; // disable overlay scrollbar --- hacky workaround for black / // transparent background @@ -81,7 +81,7 @@ public class Daemon : GLib.Application { private Indicator indicator = null; ///////////////////////////////////////////////////////////////////// - /// Varaibles set by the commend line parser. + /// Variables set by the command line parser. ///////////////////////////////////////////////////////////////////// private static string open_pie = null; @@ -139,6 +139,10 @@ public class Daemon : GLib.Application { message("Welcome to Gnome-Pie " + version + "!"); + if (GLib.Environment.get_variable("XDG_SESSION_TYPE") == "wayland") { + warning("Running on Wayland - running with limited options."); + } + this.init_pies(); // launch the indicator |