├── .gitignore ├── LICENSE ├── autoname_workspaces.py ├── i3splat.py ├── new_workspace.py ├── readme.md ├── rename_workspace.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /autoname_workspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/autoname_workspaces.py -------------------------------------------------------------------------------- /i3splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/i3splat.py -------------------------------------------------------------------------------- /new_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/new_workspace.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/readme.md -------------------------------------------------------------------------------- /rename_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/rename_workspace.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbuchanan/i3scripts/HEAD/util.py --------------------------------------------------------------------------------