mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 21:22:21 +03:00
get display number for gnome env fix
This commit is contained in:
parent
a6dc249fa8
commit
c0e8ea81cb
1 changed files with 10 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
import json
|
import json
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
from base.plugin.abstract_plugin import AbstractPlugin
|
||||||
|
import time
|
||||||
|
|
||||||
class Conky(AbstractPlugin):
|
class Conky(AbstractPlugin):
|
||||||
def __init__(self, data, context):
|
def __init__(self, data, context):
|
||||||
|
@ -63,7 +64,15 @@ class Conky(AbstractPlugin):
|
||||||
if self.machine_profile is False:
|
if self.machine_profile is False:
|
||||||
user_display = self.Sessions.display(self.username)
|
user_display = self.Sessions.display(self.username)
|
||||||
desktop_env = self.get_desktop_env()
|
desktop_env = self.get_desktop_env()
|
||||||
|
num = 0
|
||||||
if desktop_env == "gnome":
|
if desktop_env == "gnome":
|
||||||
|
while num < 50:
|
||||||
|
user_display = self.get_username_display_gnome(self.username)
|
||||||
|
if user_display != None:
|
||||||
|
break
|
||||||
|
num += 1
|
||||||
|
if user_display == None:
|
||||||
|
time.sleep(10)
|
||||||
user_display = self.get_username_display_gnome(self.username)
|
user_display = self.get_username_display_gnome(self.username)
|
||||||
self.logger.info("Get desktop environment is {0}".format(desktop_env))
|
self.logger.info("Get desktop environment is {0}".format(desktop_env))
|
||||||
self.execute(self.command_autorun_conky.format('--display=' + str(user_display), self.conky_config_file_path), as_user=self.username, result=False)
|
self.execute(self.command_autorun_conky.format('--display=' + str(user_display), self.conky_config_file_path), as_user=self.username, result=False)
|
||||||
|
|
Loading…
Reference in a new issue