diff options
author | David Runge <dave@sleepmap.de> | 2016-05-07 16:14:37 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-05-07 16:14:37 +0200 |
commit | 1d8806cf05348173bd631d64c901f3152d4ae1fa (patch) | |
tree | 24513ca029cc81ce57c3d61287b870eb0b4ef67f | |
parent | 787378f8f20b7a4ce73932bcd32aea1e7cd6003d (diff) | |
download | dotfiles-1d8806cf05348173bd631d64c901f3152d4ae1fa.tar.gz dotfiles-1d8806cf05348173bd631d64c901f3152d4ae1fa.tar.bz2 dotfiles-1d8806cf05348173bd631d64c901f3152d4ae1fa.tar.xz dotfiles-1d8806cf05348173bd631d64c901f3152d4ae1fa.zip |
.config/qtile/config.py: Adding SuperCollider to the list of programs to be spawned on dev group.
-rw-r--r-- | .config/qtile/config.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 5fa8e5f..c55c86c 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -134,9 +134,12 @@ matchers = { ], 'dev': [ Match(wm_class=[ - "Pycharm", + "scide", "Rubymine", - ]) + ]), + Match(title=[ + re.compile('SuperCollider'), + ]), ], 'games': [ Match(wm_class=[ |