1
0
Fork 0

ADDED: tab-title function in osx module

pull/1292/head
nstCactus 8 years ago
parent 412af29808
commit 7a3058c281

@ -23,6 +23,7 @@ Functions
- `osx-rm-dir-metadata` deletes .DS\_Store, \_\_MACOSX cruft.
- `osx-ls-download-history` displays the Mac OS X download history.
- `osx-rm-download-history` deletes the Mac OS X download history.
- `tab-title` sets the tab title (works in both _Terminal_ and [_iTerm_][3]).
Authors
-------

@ -0,0 +1,14 @@
#
# Changes the current tab title
#
# Authors:
# nstCactus <snstCactus@gmail.com>
#
function tab-title {
echo -ne "\033]0;"$*"\007"
}
tab-title "$@"
Loading…
Cancel
Save