wmctile 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/wmctile.rb +11 -0
- metadata +73 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 9474c678206339ee6e362df09689aef832d39fe3
|
|
4
|
+
data.tar.gz: 6a044f9a0bf34619394dc6b34e3cece57b8ecfcf
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 2ed77ce751f458f2fbca1de12acfaf3a4042c85a5bf548c7030ba95c925f13a6daa072c54a5b039c5d3df8a208110530063e99154f371a7553fb8baa80231499
|
|
7
|
+
data.tar.gz: 72909e8e7b1fb0ad795f6fd77b4e2f92c8631b51031138d675319f976df95561d7ae3bc571c6af35eda59474d6dfa43f2c36e991835479cd425afe3c1828bfa6
|
data/lib/wmctile.rb
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
module Wmctile
|
|
2
|
+
end
|
|
3
|
+
|
|
4
|
+
require_relative 'wmctile/class'
|
|
5
|
+
require_relative 'wmctile/class_with_dmenu'
|
|
6
|
+
require_relative 'wmctile/settings'
|
|
7
|
+
require_relative 'wmctile/memory'
|
|
8
|
+
require_relative 'wmctile/window'
|
|
9
|
+
require_relative 'wmctile/window_manager'
|
|
10
|
+
require_relative 'wmctile/window_tiler'
|
|
11
|
+
require_relative 'wmctile/router'
|
metadata
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: wmctile
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- mreq
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-05-09 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: dmenu
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.0'
|
|
27
|
+
description: Window manager's best friend in a gem.
|
|
28
|
+
email: contact@petrmarek.eu
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
files:
|
|
33
|
+
- lib/wmctile.rb
|
|
34
|
+
homepage: http://mreq.github.io/wmctile
|
|
35
|
+
licenses:
|
|
36
|
+
- GPL-2
|
|
37
|
+
metadata: {}
|
|
38
|
+
post_install_message: |
|
|
39
|
+
Thanks for installing wmctile. Make sure, you have the following dependencies installed on your system:
|
|
40
|
+
|
|
41
|
+
wmctrl
|
|
42
|
+
xrandr
|
|
43
|
+
dmenu
|
|
44
|
+
|
|
45
|
+
On Ubuntu it's as easy as running:
|
|
46
|
+
|
|
47
|
+
sudo apt-get install wmctrl, xrandr, dmenu
|
|
48
|
+
|
|
49
|
+
If you have that, run:
|
|
50
|
+
|
|
51
|
+
wmctile help
|
|
52
|
+
|
|
53
|
+
to show the available commands. Also be sure to check the detailed docs at http://mreq.github.io/wmctile/build/docs.
|
|
54
|
+
rdoc_options: []
|
|
55
|
+
require_paths:
|
|
56
|
+
- lib
|
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '0'
|
|
67
|
+
requirements: []
|
|
68
|
+
rubyforge_project:
|
|
69
|
+
rubygems_version: 2.2.2
|
|
70
|
+
signing_key:
|
|
71
|
+
specification_version: 4
|
|
72
|
+
summary: wmctile
|
|
73
|
+
test_files: []
|