diff options
author | Julian T <julian@jtle.dk> | 2019-02-24 13:45:22 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2019-02-24 13:45:22 +0100 |
commit | 9da5284cd811098bf8609e51ba602f08be493766 (patch) | |
tree | 8061c0ff45d782675b5f98f63a43a1603e33f469 /dwm | |
parent | 489aeecfdd9d8938669e25961f43df287c4e9bcd (diff) |
Added dwm stuff and emacs
Diffstat (limited to 'dwm')
-rwxr-xr-x | dwm/.dwmSession.sh | 2 | ||||
-rw-r--r-- | dwm/.xinitrc | 2 | ||||
-rwxr-xr-x | dwm/lc | 7 |
3 files changed, 7 insertions, 4 deletions
diff --git a/dwm/.dwmSession.sh b/dwm/.dwmSession.sh index 2c427b8..3274e7a 100755 --- a/dwm/.dwmSession.sh +++ b/dwm/.dwmSession.sh @@ -13,7 +13,7 @@ while true; do BATT=$( acpi -b | sed 's/.*[charging|unknown], \([0-9]*\)%.*/\1/gi' ) TIME=$(/bin/date +"%H:%M") - IP=$(hostname -i) + IP=$(ip -4 a | grep "inet " | sed "s:inet \(.*\)/.*:\1:" | tr -d " " | tr "\n" " ") xsetroot -name "$IP $TIME $BATT%" sleep 10 diff --git a/dwm/.xinitrc b/dwm/.xinitrc index 711303f..d0232a3 100644 --- a/dwm/.xinitrc +++ b/dwm/.xinitrc @@ -1,5 +1,5 @@ setxkbmap -layout us -variant altgr-intl -feh --bg-fill /home/julian/Pictures/up1.* +feh --bg-fill /home/julian/Pictures/defaultWall.* export _JAVA_AWT_WM_NONREPARENTING=1 export TERM=st @@ -3,7 +3,7 @@ Menu="Program Info System File" System="update poweroff syspend set-keyboard" Info="battery" -Program="cups-website vim emacs htop" +Program="cups-website vim emacs htop scrot" Commonfiles=".vimrc .zshrc" All="$System $Info $Program" @@ -47,11 +47,14 @@ handle_stuff() { if [ "$1" = "-s" ] || [ "$1" = "suspend" ]; then systemctl suspend fi - if [ "$1" = "-p" ] || [ "$1" = "poweroff" ]; then + if [ "$1" = "poweroff" ]; then poweroff fi # Mics + if [ "$1" = "-p" ] || [ "$1" = "scrot" ]; then + scrot /tmp/%Y-%m-%d-%T-screenshot.png + fi # Launch if [ "$1" = "-v" ] || [ "$1" = "vim" ]; then |