54857b2b83d3ede55b0e887637753d7d7681ebb6
## To make a commit, type your commit message and press SUPER-ENTER. To cancel
## the commit, close the window. To sign off on the commit, press SUPER-S.
## You may also reference or close a GitHub issue with this commit. To do so,
## type `#` followed by the `tab` key. You will be shown a list of issues
## related to the current repo. You may also type `owner/repo#` plus the `tab`
## key to reference an issue in a different GitHub repo.
diff --git a/functions b/functions
index 52bf5ee..a8717f3 100644
--- a/functions
+++ b/functions
@@ -3,7 +3,7 @@ udot() {
info=$(git --no-pager log --pretty="%h by %an <%ae> on %cd" -1 --abbrev-commit)
local=$(git --no-pager log --pretty="%H" -1)
remote=$(git ls-remote origin | awk "/HEAD/ {print \$1}")
- gstatus=$(git status -s)
+ gstatus=$(git status --porcelain)
echo -e ""
echo -e ' ____ U ___ u _____ _____ _ U _____ u ____ '
@@ -17,7 +17,7 @@ udot() {
echo -e "$info"
echo -e ""
- if [ "$status" != "" ]; then
+ if [ -n "$status" ]; then
echo -e "Local changes:"
echo -e "$gstatus"
echo -e ""
____ U ___ u _____ _____ _ U _____ u ____
| _"\ \/"_ \/|_ " _| |" ___| ___ |"| \| ___"|// __"| u
/| | | | | | | | | | U| |_ u |_"_| U | | u | _|" <\___ \/
U| |_| |\.-,_| |_| | /| |\ \| _|/ | | \| |/__ | |___ u___) |
|____/ u \_)-\___/ u |_|U |_| U/| |\u |_____| |_____| |____/>>
|||_ \\ _// \\_ )(\\,-.-,_|___|_,-.// \\ << >> )( (__)
(__)_) (__) (__) (__)(__)(_/ \_)-' '-(_/(_")("_)(__) (__)(__)
Overview
This repo is a store for my dotfiles.
It contains a utility (dfm) to help with managing and updating your dotfiles. For more information, check out the wiki.
Install
$ cd ~
$ git clone https://github.com/Eragos/dotfiles.git .dotfiles
$ .dotfiles/bin/dfm install
Update
$ cd ~/.dotfiles/
$ git pull
$ bin/dfm install
or
$ updot
Dependencies
tmux: To show mem, cpu, load stats, you have to install tmux-mem-cpu-load (https://github.com/thewtex/tmux-mem-cpu-load)
Description
Languages
Vim Script
55.7%
Python
17.2%
Perl
15%
Shell
12%