Created
February 7, 2012 12:17
-
-
Save dodo/1759423 to your computer and use it in GitHub Desktop.
irssi aliases for showing 7 channels at once
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
aliases = { | |
winshow = "window goto $0;window show $1"; | |
winbalance = "window goto $0;window balance"; | |
winunstick = "window goto $0;window stick off"; | |
winstick = "window goto $0;window stick on"; | |
winshowall = "winshow 1 2;winshow 2 3;winshow 3 4;winshow 4 5;winshow 5 6;winshow 6 7"; | |
winhideall = "window hide;window hide;window hide;window hide;window hide;window hide"; | |
winstickall = "winstick 2;winstick 3;winstick 4;winstick 5;winstick 6;winstick 7"; | |
winunstickall = "winunstick 1;winunstick 2;winunstick 3;winunstick 4;winunstick 5;winunstick 6;winunstick 7"; | |
winbalanceall = "winbalance 1;winbalance 2;winbalance 3;winbalance 4;winbalance 5;winbalance 6;winbalance 7"; | |
overview = "winunstickall;winshowall;winstick;winbalanceall"; | |
normal = "winunstickall;winhideall"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment