Make autostart applications optional

This commit is contained in:
Kevin Alberts 2019-05-27 23:57:45 +02:00
parent 34a2e20698
commit baece2297f
Signed by: Kurocon
GPG key ID: BCD496FEBA0C6BC1
2 changed files with 9 additions and 6 deletions

View file

@ -20,6 +20,9 @@ class Config(BaseConfig):
"' -sb '" + highlight + "' -sf '" + foreground + "'"
web_browser = "firefox-developer-edition"
file_manager = "thunar"
app_chat = "franz"
app_irc = "quasselclient"
app_mail = "thunderbird"
cmd_brightness_up = "sudo /usr/bin/xbacklight -inc 10"
cmd_brightness_down = "sudo /usr/bin/xbacklight -dec 10"
lock_command = "/home/kevin/bin/lock.sh"

View file

@ -226,13 +226,13 @@ class Kuro(BaseTheme):
groups = []
# http://fontawesome.io/cheatsheet
groups.append(Group("", spawn=Config.get('web_browser', "xterm links")))
groups.append(Group("", spawn=Config.get('app_terminal', "xterm")))
groups.append(Group("", spawn=Config.get('web_browser', "true")))
groups.append(Group("", spawn=Config.get('app_terminal', "true")))
groups.append(Group(""))
groups.append(Group("", spawn="franz"))
groups.append(Group("", spawn="quasselclient"))
groups.append(Group("", spawn=Config.get('file_manager', "thunar")))
groups.append(Group("", spawn="thunderbird"))
groups.append(Group("", spawn=Config.get('app_chat', "true")))
groups.append(Group("", spawn=Config.get('app_irc', "true")))
groups.append(Group("", spawn=Config.get('file_manager', "true")))
groups.append(Group("", spawn=Config.get('app_mail', "true")))
groups.append(Group(""))
groups.append(Group(""))
groups.append(Group(""))