mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
append -light to the default ubuntu profile
This commit is contained in:
parent
fdd3a24752
commit
34a4d72c20
1 changed files with 4 additions and 1 deletions
|
@ -150,7 +150,10 @@ def profile(screen, size):
|
|||
li = Listbox(height = 6, width = 60, returnExit = 1)
|
||||
|
||||
for choice in commands.getoutput('select-screen-profile -l').splitlines():
|
||||
li.append(choice, choice)
|
||||
if choice == "ubuntu":
|
||||
li.append(choice+("-light"), choice)
|
||||
else:
|
||||
li.append(choice, choice)
|
||||
|
||||
bb = ButtonBar(screen, ((_("Apply"), "apply"), (_("Cancel"), "cancel")), compact = 1)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue