From fb24f4809265b75009b3974fa281807ff83670f1 Mon Sep 17 00:00:00 2001
From: Kubat <mael.martin31@gmail.com>
Date: Fri, 3 Apr 2020 15:50:08 +0200
Subject: [PATCH] Now display temp, use the dmenu script for entering pass

---
 xmobar.hs | 2 +-
 xmonad.hs | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/xmobar.hs b/xmobar.hs
index 6f5679f..bce9f9c 100644
--- a/xmobar.hs
+++ b/xmobar.hs
@@ -24,5 +24,5 @@ Config { font     = "xft:HackNerdFont:size=10:antialias=true,IPAPGothic:size=10:
        , allDesktops    = False
        , sepChar        = "%"
        , alignSep       = "}{"
-       , template       = " %StdinReader% } %lektor% { %cpu% | %memory% | <fc=#b58900>Vol</fc> %volume% | %vpn%%battery% | <fc=#b58900>%date%</fc> "
+       , template       = " %StdinReader% } %lektor% { %cpu% | %coretemp% | %memory% | <fc=#b58900>Vol</fc> %volume% | %vpn%%battery% | <fc=#b58900>%date%</fc> "
 }
diff --git a/xmonad.hs b/xmonad.hs
index 60ccf23..502db51 100644
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -109,7 +109,7 @@ myManageHook = do
         , manageDocks
         ]
 
-myTerm = "/home/kubat/.local/bin/st"
+myTerm = "/home/kubat/.local/bin/st.sh"
 
 myXPConfig  = def { font = "xft:SourceCodePro:size=9" , bgColor = "black" , position = Top }
 
@@ -160,7 +160,7 @@ myAdditionalKeys =
     ])
 
 -- Passwords
-  , ((mod4Mask,                     xK_p),      passPrompt myXPConfig)
+  , ((mod4Mask,                     xK_p),      spawn "/home/kubat/.local/bin/passmenu")
 
 -- Utility
   , ((mod4Mask,                     xK_d),      shellPromptHere myXPConfig)
-- 
GitLab