diff --git a/src/XMonad/Config/Vanessa.hs b/src/XMonad/Config/Vanessa.hs
--- a/src/XMonad/Config/Vanessa.hs
+++ b/src/XMonad/Config/Vanessa.hs
@@ -11,7 +11,7 @@
 import XMonad.Util.Volume
 import XMonad.Util.Brightness
 import XMonad.Util.Keyboard
-import XMonad.StackSet
+import XMonad.StackSet as W
 --Monads etc.
 import qualified Data.Map as M
 import Data.Monoid
@@ -41,9 +41,9 @@
  
 -- | Doesn't work but I'm trying so hey. 
 myManageHook :: Query (Endo WindowSet)
-myManageHook = composeAll [ resource =? "gimp"          --> doFloat
-                          , resource =? "spotify"       --> doF (shift "5")
-                          , resource =? "google-chrome" --> doF (shift "2")
+myManageHook = composeAll [ className =? "Gimp"          --> doFloat
+                          , resource =? "spotify"       --> doF (W.shift "5")
+                          , resource =? "google-chrome" --> doF (W.shift "2")
                           ]
 
 -- | Custom keymaps to adjust volume, brightness, and 
@@ -54,7 +54,7 @@
              , ((modm, xK_Left), brighten (-100))
              , ((modm, xK_Right), brighten 100)
              , ((modm, xK_F8), toggleMute)
-             , ((modm, xK_p), spawn "yeganesh -x")
+             --, ((modm, xK_p), spawn "nohup yeganesh -x")
              , ((modm .|. shiftMask, xK_End), spawn "shutdown now")
              , ((modm, xK_F12), spawn "cd ~/.screenshots && scrot")
              , ((modm, xK_F1), setLang def)
@@ -69,8 +69,8 @@
 -- | Function giving keybindings to undo
 keysToRemove :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
 keysToRemove x@(XConfig {XMonad.modMask = modm}) = M.fromList
-        [ ((modm , xK_p ), return ())
-        ]
+        --[ ((modm , xK_p ), return ())
+        []
 
 -- | Gives a better ratio for the master pane and lets us spiral windows
 myLayout = avoidStruts $ normalPanes ||| reflectHoriz normalPanes ||| Full ||| spiral (16/9)
diff --git a/xmonad-vanessa.cabal b/xmonad-vanessa.cabal
--- a/xmonad-vanessa.cabal
+++ b/xmonad-vanessa.cabal
@@ -1,5 +1,5 @@
 name: xmonad-vanessa
-version: 0.1.0.0
+version: 0.1.0.1
 cabal-version: >=1.10
 build-type: Simple
 license: BSD3
@@ -7,7 +7,7 @@
 copyright: 2016 Vanessa McHale
 maintainer: tmchale@wisc.edu
 homepage: https://github.com/vmchale/xmonad-vanessa#readme
-synopsis: Custom xmonad, via stack
+synopsis: Custom xmonad, which uses stack and sets various defaults
 description:
     Please see README.md
 category: Web
@@ -31,7 +31,7 @@
         containers >=0.5.7.1 && <0.6,
         process >=1.4.2.0 && <1.5,
         X11 >=1.6.1.2 && <1.7,
-        tibetan-utils >=0.1.0.3 && <0.2
+        tibetan-utils >=0.1.0.1 && <0.2
     default-language: Haskell2010
     hs-source-dirs: src
 
@@ -39,16 +39,16 @@
     main-is: Main.hs
     build-depends:
         base >=4.9.0.0 && <4.10,
-        xmonad-vanessa >=0.1.0.0 && <0.2
+        xmonad-vanessa >=0.1.0.1 && <0.2
     default-language: Haskell2010
     hs-source-dirs: app
-    ghc-options: -threaded -rtsopts -with-rtsopts=-N -O3 -fllvm -optlo-O3
+    ghc-options: -threaded -rtsopts -with-rtsopts=-N
 
 executable getkb
     main-is: ParseKBLayout.hs
     build-depends:
         base >=4.9.0.0 && <4.10,
-        xmonad-vanessa >=0.1.0.0 && <0.2
+        xmonad-vanessa >=0.1.0.1 && <0.2
     default-language: Haskell2010
     hs-source-dirs: app
     ghc-options: -threaded -rtsopts -with-rtsopts=-N
