Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/255'
Browse files Browse the repository at this point in the history
* origin/pr/255:
  Improve layout filtering of options for setxkbmap
  • Loading branch information
marmarek committed Aug 20, 2023
2 parents c380412 + 4191234 commit 2ae0f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesadmin/tools/qvm_start_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def __init__(self, binary_string):
self.variants = split_string[3].decode().split(',')
self.options = split_string[4].decode()
self.options = ",".join(opt for opt in self.options.split(",")
if not opt.endswith("_toggle"))
if not opt.startswith("grp:"))

def get_property(self, layout_num):
"""Return the selected keyboard layout as formatted for keyboard_layout
Expand Down

0 comments on commit 2ae0f95

Please sign in to comment.