7 lines
142 B
Python
7 lines
142 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import i3
|
||
|
success = i3.layout('splith')
|
||
|
if success:
|
||
|
print('Successfully changed layout of the current workspace.')
|