topinambour 2.0.3 → 2.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -4
- data/lib/font_selector.rb +1 -1
- data/lib/window.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0691d6722ae037b1a62082537bbab8c33ff8cd37ab8539a8e8bc4b79476bab5e'
|
4
|
+
data.tar.gz: 64940e7dcddc3316cb25d0e61d56631b068daff15b41485736ed3d5e873833ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bb15b54d2064783f90b90103373340bc4ad4116ed6dc79ef59c75e5a0655ba0ecce9946f0e18b6718f41376a42f8a002b9c9db81ad3b8557280f4c921b69a2e
|
7
|
+
data.tar.gz: 1eb0653f29eebe9f6e80cda523d38596572c94b0e83239889c5ae19513fde6fa1c403dfcc0dd2beeaea2df28f445b642e7c4275055c0c15cd02862c95aedc5e9
|
data/README.md
CHANGED
@@ -8,6 +8,8 @@ Topinambour is a simple Terminal written with the **Gtk3** and **Vte3** ruby bin
|
|
8
8
|
**It just provides one window with one Vte terminal.**
|
9
9
|
If you need tab management, windows splitting, session management, uses [tmux](https://github.com/tmux/tmux/wiki) with it.
|
10
10
|
|
11
|
+
<a href="https://raw.github.com/cedlemo/topinambour/master/topinambour_tmux.png"><img src="https://raw.github.com/cedlemo/topinambour/master/topinambour_tmux.png" alt="Topinambour Preview"></a>
|
12
|
+
|
11
13
|
### Install
|
12
14
|
|
13
15
|
gem install topinambour
|
@@ -20,6 +22,8 @@ If you need tab management, windows splitting, session management, uses [tmux](h
|
|
20
22
|
## Features
|
21
23
|
|
22
24
|
* the Gtk theme can be modified via a Css file (~/.config/topinambour/topinambour.css).
|
25
|
+
* the current Css file can be reloaded via the app menu (Useful if you have edited it, no need to
|
26
|
+
restart topinambour.
|
23
27
|
* terminal colors can be changed on the fly and saved.
|
24
28
|
* terminal font can be changed on the fly and saved.
|
25
29
|
* in the terminal, some patterns can be clicked (urls, emails, color names ...)
|
@@ -41,7 +45,7 @@ in order to launch the appropriate application or a related dialog window.
|
|
41
45
|
|
42
46
|
## Css theming
|
43
47
|
|
44
|
-
By default, topinambour will look for the file `~/.config/topinambour/topinambour.css`. You can select another file in the preferences dialog.
|
48
|
+
By default, topinambour will look for the file `~/.config/topinambour/topinambour.css`. You can select another file in the preferences dialog. This dialog can be shown via the application menu.
|
45
49
|
Various widget can be themed via the Css like the headerbar for example. Here is the Css used in the first screenshot (the Gtk theme is the Arc theme).
|
46
50
|
|
47
51
|
topinambour-window
|
@@ -56,8 +60,10 @@ topinambour-font-selector
|
|
56
60
|
*{
|
57
61
|
}
|
58
62
|
|
59
|
-
#topinambour-window
|
63
|
+
#topinambour-window {
|
60
64
|
background-color: rgba(0,0,0,0);
|
65
|
+
border: solid 4px #282828;
|
66
|
+
border-radius: 0px 0px 8px 8px;
|
61
67
|
}
|
62
68
|
|
63
69
|
#topinambour-headerbar {
|
@@ -81,9 +87,15 @@ topinambour-font-selector
|
|
81
87
|
background-color: rgba(0,0,0,0);
|
82
88
|
border: none;
|
83
89
|
}
|
90
|
+
|
84
91
|
#topinambour-scrollbar slider{
|
85
|
-
margin
|
86
|
-
background-color:
|
92
|
+
margin: 0px;
|
93
|
+
background-color: rgba(255,255,255,0.1);
|
94
|
+
}
|
95
|
+
|
96
|
+
#topinambour-term-box {
|
97
|
+
border: solid 4px #282828;
|
98
|
+
border-radius: 0px 0px 8px 8px;
|
87
99
|
}
|
88
100
|
```
|
89
101
|
|
data/lib/font_selector.rb
CHANGED
@@ -22,7 +22,7 @@ class TopinambourFontSelector < Gtk::Box
|
|
22
22
|
|
23
23
|
reset_button = Gtk::Button.new(:label => "Reset")
|
24
24
|
reset_button.signal_connect "clicked" do
|
25
|
-
@window.
|
25
|
+
@window.terminal.font = @font.to_s
|
26
26
|
end
|
27
27
|
pack_start(reset_button, :expand => false, :fill => false, :padding => 0)
|
28
28
|
|
data/lib/window.rb
CHANGED
@@ -64,7 +64,7 @@ class TopinambourWindow < Gtk::ApplicationWindow
|
|
64
64
|
"license" => "This program is licenced under the licence GPL-3.0 and later.",
|
65
65
|
"logo_icon_name" => "utilities-terminal-symbolic",
|
66
66
|
"program_name" => "Topinambour",
|
67
|
-
"version" => "2.0.
|
67
|
+
"version" => "2.0.4",
|
68
68
|
"website" => "https://github.com/cedlemo/topinambour",
|
69
69
|
"website_label" => "Topinambour github repository"
|
70
70
|
)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: topinambour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cedric LE MOIGNE
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02-
|
11
|
+
date: 2018-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: vte3
|