summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkeyboard/dmenunametag2
-rwxr-xr-xsync/griff6
2 files changed, 2 insertions, 6 deletions
diff --git a/keyboard/dmenunametag b/keyboard/dmenunametag
index 828aca9..5d71e67 100755
--- a/keyboard/dmenunametag
+++ b/keyboard/dmenunametag
@@ -19,4 +19,4 @@ case $action in
*) exit ;;
esac
# Force bar to update by setting the root name to itself since there is currently a bug in the window manager
-xsetroot -name "$(xprop -root WM_NAME | sed -n 's/^WM_NAME(STRING) = \"\(.*\)\"/\1/p')"
+#xsetroot -name "$(xprop -root WM_NAME | sed -n 's/^WM_NAME(STRING) = \"\(.*\)\"/\1/p')"
diff --git a/sync/griff b/sync/griff
index bc43b7c..ce9b6fa 100755
--- a/sync/griff
+++ b/sync/griff
@@ -35,9 +35,7 @@ rddiff() {
git status | grep -v '(use'
read -p "Would you like to view the changes? [y/n]: " viewchange
case $viewchange in
- y|yes|Y|Yes)
- git diff HEAD $REF -- $DIR
- ;;
+ y|yes|Y|Yes) git diff HEAD $REF -- $DIR ;;
esac
read -p "Would you like to push these changes? [y/n]: " pushchange
case $pushchange in
@@ -51,8 +49,6 @@ rddiff() {
;;
esac
fi
- else
- echo "$BOLD$RED[Repo $name does not exist at $repo!]$NORM"
fi
done
}