xmonad-vanessa 2.1.0.0 → 2.1.0.1
raw patch · 3 files changed
+11/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- app/Main.hs +5/−4
- xmonad-vanessa.cabal +2/−2
CHANGELOG.md view
@@ -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`
app/Main.hs view
@@ -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
xmonad-vanessa.cabal view
@@ -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,