diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-12 07:59:47 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-12 07:59:47 -0300 |
commit | 45d54ccad58a3492f964a1e14fd5e88786b0c0a5 (patch) | |
tree | 7b4fbd95e239ed006e2177d4748ac7e2bc3dabd7 | |
parent | 1a0f463ac6e15a847dae38be45b04ad7bdada4f3 (diff) | |
download | profile-45d54ccad58a3492f964a1e14fd5e88786b0c0a5.tar.gz profile-45d54ccad58a3492f964a1e14fd5e88786b0c0a5.tar.bz2 |
Adds xtitle alias
-rw-r--r-- | aliases.dot.link | 1 | ||||
-rw-r--r-- | profile.dot.link | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/aliases.dot.link b/aliases.dot.link index 168a6be..a604102 100644 --- a/aliases.dot.link +++ b/aliases.dot.link @@ -9,6 +9,7 @@ alias today="date +%Y%m%d" alias month="date +%Y%m" alias hashpw="mkpasswd -m sha-512" alias stitle="screen -X title" +alias xtitle="tmux rename-window" alias q="exit" alias open="xdg-open" alias mc="TERM=xterm-256color mc" diff --git a/profile.dot.link b/profile.dot.link index 59011c7..aa06c2b 100644 --- a/profile.dot.link +++ b/profile.dot.link @@ -81,7 +81,8 @@ fi # Special cd: change folder and set title scd() { cd "$*" - stitle `basename $*` + stitle `basename $*` > /dev/null 2>&1 + xtitle `basename $*` > /dev/null 2>&1 } mkday() { |