From 9da5284cd811098bf8609e51ba602f08be493766 Mon Sep 17 00:00:00 2001 From: Julian T Date: Sun, 24 Feb 2019 13:45:22 +0100 Subject: Added dwm stuff and emacs --- dwm/.dwmSession.sh | 2 +- dwm/.xinitrc | 2 +- dwm/lc | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) (limited to 'dwm') 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 diff --git a/dwm/lc b/dwm/lc index 9691d45..a482d8e 100755 --- a/dwm/lc +++ b/dwm/lc @@ -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 -- cgit v1.2.3