diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # xmonad-vanessa
 
+## 2.1.0.1
+  
+  * Use `gnome-terminal` as default
+
 ## 2.1.0.0
 
   * Remove `Show` instance for `KbLayout` and replace with `xmobarKbLayout`
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -3,6 +3,7 @@
 -- | Configuration with defaults I like.
 module Main (main) where
 
+import           Control.Composition       (axe)
 import qualified Data.Map                  as M
 import           Data.Maybe
 import           Data.Monoid
@@ -31,7 +32,7 @@
     where config' = myConfig
 
 -- | Custom configuration taking in one pipe to xmobar
-myConfig xmproc = docks $ def { terminal   = "alacritty"
+myConfig xmproc = docks $ def { terminal   = "gnome-terminal"
                               , keys       = newKeys
                               , layoutHook = myLayout
                               , logHook    = vLogHook xmproc
@@ -93,7 +94,7 @@
              --screenshots
              , ((0, xK_Print), spawn "cd ~/.screenshots && scrot")
              -- open scratchpad
-             , ((modm .|. shiftMask, xK_p), withFocused (mconcat . sequence [float, mkSmall]))
+             , ((modm .|. shiftMask, xK_p), withFocused (axe [float, mkSmall]))
              -- TODO: keybindings to move all windows in a workspace to another
              -- workspace?
              --shutdown etc.
@@ -109,8 +110,8 @@
              , ((modm, xK_F6), setLang dansk)
              , ((modm, xK_F7), setLang dzongkha)
              -- hide windows
-             , ((modm .|. shiftMask, xK_h), withFocused (mconcat . sequence [hide, hideWindow]))
-             , ((modm, xK_u), popNewestHiddenWindow >> withFocused reveal)
+             , ((modm .|. shiftMask, xK_h), withFocused (axe [hide, hideWindow]))
+             , ((modm, xK_u), popNewestHiddenWindow *> withFocused reveal)
              -- grid select
              , ((modm, xK_g), goToSelected def)
              -- Mosaic adjustment
diff --git a/xmonad-vanessa.cabal b/xmonad-vanessa.cabal
--- a/xmonad-vanessa.cabal
+++ b/xmonad-vanessa.cabal
@@ -1,12 +1,11 @@
 cabal-version: >=1.10
 name: xmonad-vanessa
-version: 2.1.0.0
+version: 2.1.0.1
 license: BSD3
 license-file: LICENSE
 copyright: 2017-2018 Vanessa McHale
 maintainer: vamchale@gmail.com
 author: Vanessa McHale
-homepage: https://hub.darcs.net/vmchale/xmonad-vanessa
 synopsis: Custom xmonad, which builds with stack or cabal.
 description:
     Custom xmonad example, plus several bits of functionality for managing media within XMonad.
@@ -45,6 +44,7 @@
         base -any,
         xmonad-vanessa -any,
         xmonad -any,
+        composition-prelude -any,
         xmonad-contrib -any,
         xmonad-spotify -any,
         xmonad-volume -any,
