Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nama committed Nov 6, 2023
1 parent 1235013 commit 54598c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sway_workspaces/sway_workspaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def get_app(tree, app):
continue
for ws in output['nodes']:
ws_name = ws['name']
ws_orientiation = ws['orientation']
ws_orientation = ws['orientation']
if len(ws['nodes']) == 0: # empty workspace
continue
apps = node_getter(ws) # in case of nested workspace, can happen indefinitely
Expand All @@ -183,7 +183,7 @@ def get_app(tree, app):
if debug:
print(f'Window {app.get("name")} already in correct workspace {ws_name}')
continue
if ws_orientiation == 'horizontal':
if ws_orientation == 'horizontal':
o = 'h'
else:
o = 'v'
Expand Down

0 comments on commit 54598c1

Please sign in to comment.