uh-wm 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -12
- data/lib/uh/wm/version.rb +1 -1
- data/uh-wm.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90bb2db7d0ff95cadba21f024472658c3e34bf26
|
4
|
+
data.tar.gz: 431956116c975b8c1a464d500876bedefd376604
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fe009094ba796ae3618f6915c1491434d95fe61bf47c23916b2afea370a39ab016fa25491a40d286ab4e8f046a948aa2b64ea461dca89c2d7be127defa2baa5
|
7
|
+
data.tar.gz: b847e39101c820ad04f7519311e8103447b094b85d95902b634b39b0a6bb6e45bd718d8b4b582a9bfce110c52e54a0525db080518e563d049cda6c65cd8ffd5e
|
data/README.md
CHANGED
@@ -8,26 +8,27 @@ uh-wm
|
|
8
8
|
|
9
9
|
uh-wm is a minimalistic tiling and stacking window manager for X. It
|
10
10
|
shares some similarities with dwm and wmii, but is written in ruby so
|
11
|
-
you can configure and extend features with ruby code.
|
11
|
+
you can configure and extend features directly with ruby code.
|
12
12
|
|
13
13
|
The layout strategy is interchangeable, the default one being the
|
14
14
|
`uh-layout` ruby gem. A layout is a simple ruby object responding to
|
15
|
-
specific
|
15
|
+
specific messages.
|
16
16
|
|
17
17
|
Main features:
|
18
18
|
|
19
19
|
* Xinerama support;
|
20
|
-
*
|
20
|
+
* multiple event handling strategy: blocking or multiplexing
|
21
21
|
with `select()`;
|
22
|
-
*
|
23
|
-
*
|
24
|
-
*
|
25
|
-
*
|
26
|
-
*
|
27
|
-
*
|
28
|
-
*
|
29
|
-
*
|
30
|
-
*
|
22
|
+
* configuration with a run control file (ruby DSL);
|
23
|
+
* key bindings with user defined code as callback;
|
24
|
+
* configurable modifier key;
|
25
|
+
* support user-defined layout strategies;
|
26
|
+
* program execution;
|
27
|
+
* no re-parenting (therefore, no window decoration either);
|
28
|
+
* no grabbing of the modifier key alone;
|
29
|
+
* no mouse handling;
|
30
|
+
* no EWMH support;
|
31
|
+
* very limited ICCCM support.
|
31
32
|
|
32
33
|
|
33
34
|
Getting started
|
data/lib/uh/wm/version.rb
CHANGED
data/uh-wm.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.test_files = s.files.grep /\A(spec|features)\//
|
16
16
|
s.executables = s.files.grep(/\Abin\//) { |f| File.basename(f) }
|
17
17
|
|
18
|
-
s.add_dependency 'uh', '2.0.0
|
18
|
+
s.add_dependency 'uh', '2.0.0'
|
19
19
|
s.add_dependency 'uh-layout', '~> 0.4.0'
|
20
20
|
|
21
21
|
s.add_development_dependency 'aruba', '~> 0.6'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uh-wm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thibault Jouan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uh
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.0.0
|
19
|
+
version: 2.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.0.0
|
26
|
+
version: 2.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: uh-layout
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|