This file contains hidden or 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
| # Settings for Screen to allow better use of emacs | |
| # | |
| # Most important: rebind ctrl-A | |
| ## Control-^ (usually Control-Shift-6) is traditional and the only key not used by emacs | |
| escape ^^^^ | |
| # | |
| ## do not trash BackSpace, usually DEL | |
| bindkey -k kb | |
| bindkey -d -k kb | |
| # |
This file contains hidden or 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 | |
| # | |
| # This script encapsulates the functionality of a queue. It requires there to be | |
| # an input file with the data in the queue being separated on different lines. | |
| # | |
| INPUT=queue.txt | |
| OUTPUT=trash.txt | |
| CMD=/usr/bin/vlc |
NewerOlder