Minor edits to conky

This commit is contained in:
Derek Taylor
2021-04-22 10:45:07 -05:00
parent 9b23f41882
commit b507f437c9
4 changed files with 25 additions and 12 deletions

View File

@@ -1,12 +1,12 @@
[geometry] [geometry]
posx=1920 posx=1936
posy=0 posy=40
sizex=1920 sizex=932
sizey=1080 sizey=1020
[nitrogen] [nitrogen]
view=icon view=icon
recurse=true recurse=true
sort=alpha sort=alpha
icon_caps=false icon_caps=false
dirs=~/wallpapers; dirs=/home/dt/wallpapers;

View File

@@ -21,7 +21,7 @@ pa http://www.patreon.com/distrotube/
py https://www.paypal.com/ py https://www.paypal.com/
sb https://socialblade.com/youtube/c/distrotube sb https://socialblade.com/youtube/c/distrotube
sky https://www.skysilk.com/ sky https://www.skysilk.com/
sp file://~/.surf/html/homepage.html sp file:///home/dt/.surf/html/homepage.html
suck https://suckless.org/ suck https://suckless.org/
tee https://teespring.com/stores/distrotube tee https://teespring.com/stores/distrotube
tt https://www.tastytrade.com/ tt https://www.tastytrade.com/

View File

@@ -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 :: String
myFont = "xft:SauceCodePro Nerd Font Mono:regular:size=9:antialias=true:hinting=true" 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 :: KeyMask
myModMask = mod4Mask -- Sets modkey to super/windows key 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 windowCount = gets $ Just . show . length . W.integrate' . W.stack . W.workspace . W.current . windowset
#+END_SRC #+END_SRC
#+RESULTS:
#+begin_example
<interactive>:37:45-56: error:
Not in scope: W.integrate'
No module named W is imported.
<interactive>:37:60-66: error:
Not in scope: W.stack
No module named W is imported.
<interactive>:37:70-80: error:
Not in scope: W.workspace
No module named W is imported.
<interactive>:37:84-92: error:
Not in scope: W.current
No module named W is imported.
#+end_example
* Autostart (The Startup Hook) * 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. 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.

View File

@@ -68,9 +68,6 @@ import XMonad.Util.SpawnOnce
myFont :: String myFont :: String
myFont = "xft:SauceCodePro Nerd Font Mono:regular:size=9:antialias=true:hinting=true" 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 :: KeyMask
myModMask = mod4Mask -- Sets modkey to super/windows key myModMask = mod4Mask -- Sets modkey to super/windows key