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
#!/bin/bash | |
# ================================================================================== # | |
# Focus the next window on the current workspace in i3, e.g. for binding to Alt+Tab # | |
# Depends: jq, awk, i3wm (obviously) # | |
# Author: Nervengift <[email protected]> # | |
# License: Don't think this deserves a license, Public Domain # | |
# Known bugs: doesn't work with non-window container focused # | |
# ================================================================================== # | |
ws=$(i3-msg -t get_workspaces|jq "map(select(.focused))[]|.name") |
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
# This gist is compatible with Ansible 1.x . | |
# For Ansible 2.x , please check out: | |
# - https://gist.github.com/dmsimard/cd706de198c85a8255f6 | |
# - https://github.com/n0ts/ansible-human_log | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# |