Created
March 30, 2011 12:32
-
-
Save sebfisch/894311 to your computer and use it in GitHub Desktop.
Removes window decoration in tiling Bluetile layouts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/bluetile.cabal b/bluetile.cabal | |
index 5ccc294..fd358e6 100644 | |
--- a/bluetile.cabal | |
+++ b/bluetile.cabal | |
@@ -1,5 +1,5 @@ | |
Name: bluetile | |
-Version: 0.5.3 | |
+Version: 0.5.3.1 | |
homepage: http://www.bluetile.org/ | |
synopsis: full-featured tiling for the GNOME desktop environment | |
description: | |
diff --git a/src/Config.hs b/src/Config.hs | |
index ee0c02d..96d1099 100644 | |
--- a/src/Config.hs | |
+++ b/src/Config.hs | |
@@ -177,7 +177,8 @@ bluetileLayoutHook bluetileTheme = avoidStruts $ minimize $ boringWindows $ ( | |
tiled2 = tilingDeco $ maximize $ mouseResizableTile | |
fullscreen = tilingDeco $ maximize $ smartBorders Full | |
- tilingDeco l = windowSwitcherDecorationWithButtons shrinkText bluetileTheme (draggingVisualizer l) | |
+ -- remove deco in tiling layouts | |
+ tilingDeco l = l -- windowSwitcherDecorationWithButtons shrinkText bluetileTheme (draggingVisualizer l) | |
floatingDeco l = buttonDeco shrinkText bluetileTheme l | |
createXMonadConfig bluetilerc = |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment