aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-10 21:24:44 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-11 13:32:42 +0100
commit0eb0748f05dd07fab605aab2318fbf1478144b4a (patch)
tree492d20148b733c2e144bfe47c20dac5ab8a46955
parentac9b93240c33acb1ea6954a6c09ecb00ada16e9c (diff)
downloaddotfiles-0eb0748f05dd07fab605aab2318fbf1478144b4a.tar.gz
dotfiles-0eb0748f05dd07fab605aab2318fbf1478144b4a.tar.bz2
dotfiles-0eb0748f05dd07fab605aab2318fbf1478144b4a.zip
(General)~some minor changes for supporting the desktop
These changes are mostly surface level.
-rwxr-xr-xScripts/.local/scripts/background2
-rwxr-xr-xScripts/.local/scripts/status/memory3
-rw-r--r--Shell/.zshrc1
3 files changed, 4 insertions, 2 deletions
diff --git a/Scripts/.local/scripts/background b/Scripts/.local/scripts/background
index 8a64d0f..6ee6455 100755
--- a/Scripts/.local/scripts/background
+++ b/Scripts/.local/scripts/background
@@ -1,3 +1,3 @@
#!/bin/bash
-feh --bg-scale --randomize $HOME/Pictures/Backgrounds;
+feh --bg-fill --randomize $HOME/Pictures/Backgrounds;
diff --git a/Scripts/.local/scripts/status/memory b/Scripts/.local/scripts/status/memory
index 042596d..ecdfc0e 100755
--- a/Scripts/.local/scripts/status/memory
+++ b/Scripts/.local/scripts/status/memory
@@ -3,4 +3,5 @@
line=$(free -m | sed -n 2p);
used=$(echo $line | awk '{print $3}');
available=$(echo $line | awk '{print $2}');
-echo "" $(printf "%dMB" $used) $(echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1)
+value=$(echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1)
+echo " $(printf "%dMB" $used) $value%"
diff --git a/Shell/.zshrc b/Shell/.zshrc
index 0c0836f..8d17113 100644
--- a/Shell/.zshrc
+++ b/Shell/.zshrc
@@ -29,6 +29,7 @@ ef () {
### Git aliases
alias gs="git status"
+alias gd="git diff"
alias gc="git commit"
alias gg="emacsclient -s MAIN -a emacs -c --eval '(magit)'"