diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-03-17 15:37:37 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-03-17 15:37:37 +0100 |
commit | 3e58daa3f4465a6a94ab157ec507dcba040db74a (patch) | |
tree | 0f5981581a5c5a4878503cedef8f8b61c20b2cdf /src/redshift-gtk/statusicon.py | |
parent | Merge remote-tracking branch 'maandree/leaks' (diff) | |
download | redshift-ng-3e58daa3f4465a6a94ab157ec507dcba040db74a.tar.gz redshift-ng-3e58daa3f4465a6a94ab157ec507dcba040db74a.tar.bz2 redshift-ng-3e58daa3f4465a6a94ab157ec507dcba040db74a.tar.xz |
[gtk] Set proc title
Try to set the process title during startup. Before, redshift-gtk appeared as a python process.
This change enables `pgrep redshift-gtk` or `killall redshift-gtk`.
Diffstat (limited to 'src/redshift-gtk/statusicon.py')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index 6174aec..6877eac 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -316,7 +316,10 @@ class RedshiftStatusIcon(object): os.kill(self.process[0], signal.SIGINT) os.waitpid(self.process[0], 0) + def run(): + utils.setproctitle('redshift-gtk') + # Internationalisation gettext.bindtextdomain('redshift', defs.LOCALEDIR) gettext.textdomain('redshift') |