Update to 0.4. From Dmitri Alenitchev.

This commit is contained in:
kili 2007-11-18 20:13:31 +00:00
parent cf7b7358e9
commit c7fb1f76d5
5 changed files with 25 additions and 27 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.3 2007/10/01 20:46:30 kili Exp $
# $OpenBSD: Makefile,v 1.4 2007/11/18 20:13:31 kili Exp $
COMMENT= tiling window manager
V= 0.3
V= 0.4
DISTNAME= xmonad-$V
CATEGORIES= x11
HOMEPAGE= http://www.xmonad.org/

View File

@ -1,5 +1,5 @@
MD5 (xmonad-0.3.tar.gz) = edL4fkJE7obm49O8Q8XJeg==
RMD160 (xmonad-0.3.tar.gz) = d+tQ4uzlwTI246Va+nT7JCfZYC0=
SHA1 (xmonad-0.3.tar.gz) = hE1NVya738C5+MtfH3fo+vjQzvc=
SHA256 (xmonad-0.3.tar.gz) = IeczqWfmjbzPPaFNwKXc8rDIB3aqcy4flXbEOJxumpU=
SIZE (xmonad-0.3.tar.gz) = 35522
MD5 (xmonad-0.4.tar.gz) = XSTFVvfI8ElUchs5H9eaEw==
RMD160 (xmonad-0.4.tar.gz) = Jm5iQcZlFrRKk6SNRw6bdglgByo=
SHA1 (xmonad-0.4.tar.gz) = NNQXcyDSosEmPGla5/s3HCzf8UY=
SHA256 (xmonad-0.4.tar.gz) = l4+5nkB4YHAweZL954/iUrlug0dA+5g7lMOjlcRUZ7s=
SIZE (xmonad-0.4.tar.gz) = 41025

View File

@ -1,11 +1,11 @@
--- Config.hs.orig Tue Sep 4 21:34:21 2007
+++ Config.hs Mon Oct 1 21:36:08 2007
@@ -58,7 +58,7 @@ modMask = mod1Mask
--- Config.hs.orig Wed Oct 17 01:53:12 2007
+++ Config.hs Sun Oct 28 18:21:41 2007
@@ -90,7 +90,7 @@ focusedBorderColor = "#ff0000"
-- Fields are: top, bottom, left, right.
--
defaultGaps :: [(Int,Int,Int,Int)]
-defaultGaps = [(0,0,0,0)] -- 15 for default dzen
+defaultGaps = repeat (15,0,0,0) -- 15 for default dzen
-defaultGaps = [(0,0,0,0)] -- 15 for default dzen font
+defaultGaps = repeat (15,0,0,0) -- 15 for default dzen font
-- |
-- numlock handling:
------------------------------------------------------------------------
-- Window rules

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-Main_hs,v 1.2 2007/10/01 20:46:30 kili Exp $
--- Main.hs.orig Tue Sep 4 21:34:21 2007
+++ Main.hs Fri Sep 14 15:10:20 2007
@@ -53,7 +53,7 @@ main = do
let winset | ("--resume" : s : _) <- args
, [(x, "")] <- reads s = x
| otherwise = new workspaces $ zipWith SD xinesc gaps
$OpenBSD: patch-Main_hs,v 1.3 2007/11/18 20:13:31 kili Exp $
--- Main.hs.orig Wed Oct 17 01:53:12 2007
+++ Main.hs Sun Oct 28 18:22:13 2007
@@ -62,7 +62,7 @@ main = do
return . W.ensureTags layoutHook workspaces
$ W.mapLayout (fromMaybe layoutHook . maybeRead) ws
- gaps = take (length xinesc) $ defaultGaps ++ repeat (0,0,0,0)
+ gaps = take (length xinesc) $ repeat (0,0,0,0)
safeLayouts = case defaultLayouts of [] -> (full, []); (x:xs) -> (x,xs)
cf = XConf
{ display = dpy

View File

@ -1,11 +1,9 @@
Xmonad is a tiling window manager for X. Windows are arranged
xmonad is a tiling window manager for X. Windows are arranged
automatically to tile the screen without gaps or overlap, maximising
screen use. All features of the window manager are accessible from
the keyboard: a mouse is strictly optional. Xmonad is written and
the keyboard: a mouse is strictly optional. xmonad is written and
extensible in Haskell. Custom layout algorithms, and other extensions,
may be written by the user in config files. Layouts are applied
dynamically, and different layouts may be used on each workspace.
Xinerama is fully supported, allowing windows to be tiled on several
screens. A guiding principle of the design is predictability: users
should know in advance precisely the window arrangement that will
result from any action, leading to a simpler user interface.
screens.