From b507f437c9477f9af29728a7861ce3af36d1c357 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Thu, 22 Apr 2021 10:45:07 -0500 Subject: [PATCH] Minor edits to conky --- .config/nitrogen/nitrogen.cfg | 10 +++++----- .config/qutebrowser/quickmarks | 2 +- .xmonad/README.org | 22 +++++++++++++++++++--- .xmonad/xmonad.hs | 3 --- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/.config/nitrogen/nitrogen.cfg b/.config/nitrogen/nitrogen.cfg index 9a40cf3..c16556b 100644 --- a/.config/nitrogen/nitrogen.cfg +++ b/.config/nitrogen/nitrogen.cfg @@ -1,12 +1,12 @@ [geometry] -posx=1920 -posy=0 -sizex=1920 -sizey=1080 +posx=1936 +posy=40 +sizex=932 +sizey=1020 [nitrogen] view=icon recurse=true sort=alpha icon_caps=false -dirs=~/wallpapers; +dirs=/home/dt/wallpapers; diff --git a/.config/qutebrowser/quickmarks b/.config/qutebrowser/quickmarks index a41ec36..a9b9483 100755 --- a/.config/qutebrowser/quickmarks +++ b/.config/qutebrowser/quickmarks @@ -21,7 +21,7 @@ pa http://www.patreon.com/distrotube/ py https://www.paypal.com/ sb https://socialblade.com/youtube/c/distrotube sky https://www.skysilk.com/ -sp file://~/.surf/html/homepage.html +sp file:///home/dt/.surf/html/homepage.html suck https://suckless.org/ tee https://teespring.com/stores/distrotube tt https://www.tastytrade.com/ diff --git a/.xmonad/README.org b/.xmonad/README.org index 8f69fb1..02401cd 100644 --- a/.xmonad/README.org +++ b/.xmonad/README.org @@ -108,9 +108,6 @@ It's nice to assign values to stuff that you will use more than once in the conf myFont :: String myFont = "xft:SauceCodePro Nerd Font Mono:regular:size=9:antialias=true:hinting=true" -myEmojiFont :: String -myEmojiFont = "xft:JoyPixels:regular:size=9:antialias=true:hinting=true" - myModMask :: KeyMask myModMask = mod4Mask -- Sets modkey to super/windows key @@ -143,6 +140,25 @@ windowCount :: X (Maybe String) windowCount = gets $ Just . show . length . W.integrate' . W.stack . W.workspace . W.current . windowset #+END_SRC +#+RESULTS: +#+begin_example +:37:45-56: error: + Not in scope: ‘W.integrate'’ + No module named ‘W’ is imported. + +:37:60-66: error: + Not in scope: ‘W.stack’ + No module named ‘W’ is imported. + +:37:70-80: error: + Not in scope: ‘W.workspace’ + No module named ‘W’ is imported. + +:37:84-92: error: + Not in scope: ‘W.current’ + No module named ‘W’ is imported. +#+end_example + * Autostart (The Startup Hook) These are commands we want XMonad to execute on startup, such as running a compositor, setting our wallpaper, starting the emacs daemon, and starting our system tray and the applications that belong in it. diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index e19c732..f17b372 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -68,9 +68,6 @@ import XMonad.Util.SpawnOnce myFont :: String myFont = "xft:SauceCodePro Nerd Font Mono:regular:size=9:antialias=true:hinting=true" -myEmojiFont :: String -myEmojiFont = "xft:JoyPixels:regular:size=9:antialias=true:hinting=true" - myModMask :: KeyMask myModMask = mod4Mask -- Sets modkey to super/windows key