Skip to content

Commit a7652f1

Browse files
committed
Update README.md and add LICENSE
Fix app name
1 parent bdd92d0 commit a7652f1

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2018 Bert Hekman
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
1-
# Prerequisites
1+
# Launch SSH
2+
3+
SSH launcher which saves a history of launched sessions which can be filtered through the next time you want to launch a session.
4+
5+
## Installing
6+
7+
### Ubuntu / Linux Mint
8+
9+
Download and install:
10+
11+
* [launch-ssh_0.1-xenial_amd64.deb](https://github.com/DemonTPx/launch-ssh/releases/download/0.1/launch-ssh_0.1-xenial_amd64.deb)
12+
* [launch-ssh_0.1-artful_amd64.deb](https://github.com/DemonTPx/launch-ssh/releases/download/0.1/launch-ssh_0.1-artful_amd64.deb)
13+
14+
It is recommended that you add a global keyboard shortcut (eg. to `SUPER+Q`) which runs `launch_ssh` to easily launch SSH sessions using this application.
15+
16+
### From source (linux)
217

318
Install the following packages:
419

520
libwxgtk3.0-dev wx3.0-headers libwxgtk3.0-0v5
21+
22+
Then run the following commands from the working copy:
23+
24+
mkdir build
25+
cd build
26+
cmake -DCMAKE_BUILD_TYPE=Release ../
27+
make -j 2
28+
mv launch_ssh /usr/local/bin/launch_ssh
29+
30+
## Credits
31+
32+
The icon was taken from [moka-icon-theme](https://github.com/snwh/moka-icon-theme) by [Sam Hewitt](https://github.com/snwh) which is under a [Creative Commons Attribution ShareAlike 4.0](https://creativecommons.org/licenses/by-sa/4.0) license.
33+
34+
## License
35+
36+
The code is under MIT ([LICENSE](LICENSE)).
37+
38+
The icon is under [Creative Commons Attribution ShareAlike 4.0](https://creativecommons.org/licenses/by-sa/4.0)

src/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bool App::OnInit() {
1111

1212
wxIcon icon(icon_xpm);
1313

14-
auto mainFrame = new MainFrame(_("SSH launch"), wxDefaultPosition, wxDefaultSize);
14+
auto mainFrame = new MainFrame(_("Launch SSH"), wxDefaultPosition, wxDefaultSize);
1515
mainFrame->Show(true);
1616
mainFrame->SetIcon(icon);
1717

0 commit comments

Comments
 (0)