-
-
Save dcasati/7c1fb5001871cb6b38f35deba9bb1a3b to your computer and use it in GitHub Desktop.
Renaming i3 workspaces with https://github.com/acrisci/i3ipc-python while keeping the <number> <letter> prefix for keyboard navigation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# renameworkspace.py - Renaming i3 workspaces with https://github.com/acrisci/i3ipc-python while keeping the <number>: <letter> prefix for keyboard navigation. | |
# Written in 2017 by Fahrstuhl | |
# To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. | |
# You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | |
import i3ipc | |
import re | |
class WorkspaceRenamer(object): | |
prefixRegex = re.compile('\d+.*') | |
def __init__(self): | |
self.i3 = i3ipc.Connection() | |
def findFocusedWorkspace(self): | |
focused = self.i3.get_tree().find_focused() | |
workspace = focused.workspace() | |
return workspace | |
def getWorkspacePrefix(self): | |
workspace = self.findFocusedWorkspace() | |
oldname = workspace.name | |
prefix = self.prefixRegex.match(oldname) | |
if prefix is None: | |
raise LookupError("No workspace name found") | |
return prefix[0] | |
def interactiveRenameCurrentWorkspace(self): | |
prefix = self.getWorkspacePrefix() | |
renameCommand = 'rename workspace to "{} %s"'.format(prefix) | |
inputCommand = """exec i3-input -F '{}' -P "Rename workspace to: {} " """.format(renameCommand, prefix) | |
print(renameCommand) | |
print(inputCommand) | |
self.i3.command(inputCommand) | |
def main(): | |
renamer = WorkspaceRenamer() | |
renamer.interactiveRenameCurrentWorkspace() | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
small change from the original code:
also, for this to work for me, I've done the following:
~/.config/scripts
bindsym $mod+q exec "python3 ~/.config/scripts/renameworkspace.py"