aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aliases.dot.link2
-rw-r--r--profile.dot.link4
2 files changed, 5 insertions, 1 deletions
diff --git a/aliases.dot.link b/aliases.dot.link
index 1698ec4..05e5250 100644
--- a/aliases.dot.link
+++ b/aliases.dot.link
@@ -7,6 +7,8 @@ alias music="ncmpcpp"
alias mkdir="mkdir -p"
alias today="date +%Y%m%d"
alias month="date +%Y%m"
+alias mkday="mkdir `today && cd `today``"
+alias mkmonth="mkdir `month` && cd `month`"
alias hashpw="mkpasswd -m sha-256"
alias stitle="screen -X title"
alias q="exit"
diff --git a/profile.dot.link b/profile.dot.link
index e5f280b..74f1286 100644
--- a/profile.dot.link
+++ b/profile.dot.link
@@ -47,7 +47,9 @@ cd() {
# Update screen title
if [ ! -z "$project" ] && [ ! -z "$STY" ]; then
- stitle `basename $project`
+ #if [ "$project" == "`basename $project`" ]; then
+ stitle `basename $project`
+ #fi
fi
}