diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 22dfef2..9655d6a 100755 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -180,7 +180,7 @@ def init_keys(): ), Key( [mod], "KP_End", # Keypad 1 - lazy.spawn(myTerm+" -e lynx -cfg=~/.lynx.cfg -lss=~/.lynx.lss http://www.distrowatch.com") + lazy.spawn(myTerm+" -e lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss gopher://distro.tube") # lazy.spawn(myTerm+" -e lynx -cfg=~/.lynx.cfg -lss=~/.lynx.lss http://www.distrowatch.com") ), Key( diff --git a/.dwm/autostart.sh b/.dwm/autostart.sh index 24b72a6..a5f1ba6 100755 --- a/.dwm/autostart.sh +++ b/.dwm/autostart.sh @@ -5,17 +5,12 @@ urxvtd -q -o -f & dte(){ dte="$(date +"%A, %B %d | 🕒 %l:%M%p")" - echo -e "📅 $dte" -} - -upd(){ - upd=`checkupdates | wc -l` - echo -e "⟳ $upd updates" + echo -e "$dte" } mem(){ mem=`free | awk '/Mem/ {printf "%d MiB/%d MiB\n", $3 / 1024.0, $2 / 1024.0 }'` - echo -e "🖪 $mem" + echo -e "🖪 $mem" } cpu(){ @@ -25,7 +20,7 @@ cpu(){ read cpu a b c idle rest < /proc/stat total=$((a+b+c+idle)) cpu=$((100*( (total-prevtotal) - (idle-previdle) ) / (total-prevtotal) )) - echo -e "💻 $cpu% cpu" + echo -e "💻 $cpu% cpu" } while true; do diff --git a/dwm/config.h b/dwm/config.h index 3633991..ee21655 100755 --- a/dwm/config.h +++ b/dwm/config.h @@ -116,7 +116,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, /* Apps Launched with + */ - { MODKEY, XK_KP_End, spawn, CMD("st -e lynx -cfg=~/.lynx.cfg -lss=~/.lynx.lss http://www.distrowatch.com") }, + { MODKEY, XK_KP_End, spawn, CMD("st -e lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss gopher://distro.tube") }, { MODKEY, XK_KP_Down, spawn, CMD("st -e sh ./scripts/googler-script.sh") }, { MODKEY, XK_KP_Page_Down, spawn, CMD("st -e newsboat") }, { MODKEY, XK_KP_Left, spawn, CMD("st -e rtv") },