-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.html
105 lines (85 loc) · 4.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
layout: default
---
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Enso Launcher Open-Source</h1>
<p>
<img height="16px" width="16px" src="/images/download.png" alt="Download"/>
<img height="16px" width="16px" src="/images/windows.png" alt="Firefox"/>
<a id="exe-link" href="#">Download</a>
:: <img height="16px" width="16px" src="/images/youtube.png" alt="Youtube" style="max-width:100%;">
<a href="https://youtu.be/QFXBp2vuEEA" target="_blank">Video Manual</a>
</p>
<script>
getLatestGHRelease("enso-portable", function (release) {
setDownloadLink(release, ".exe", "exe-link");
});
function watch(delay) {
delayedPlayProductVideo("product-poster", "product-video", 30000, delay);
}
watch(1000);
</script>
<div id="product-poster" class="video-placeholder">
<div class="poster-container" onclick="watch(0)">
<img class="poster" src="/enso-portable/media/screen.jpg" alt="screen"/>
<div class="play-button-container" onclick="watch(0)"><!--
--><img class="play-button" src="/images/play_video.png"></div>
</div>
</div>
<div id="product-video" class="product-video">
<video src="/enso-portable/media/enso.webm" type="video/webm" muted></video>
</div>
<p>SEE ALSO: <a href="https://gchristensen.github.io/ishell/" target="_blank">iShell</a>,
<a href="https://gchristensen.github.io/rho-emacs/" target="_blank">ρEmacs</a></p>
<h4>Description</h4>
<p style="text-align: justify;">Enso Launcher allows to launch programs found in the Windows Start menu (or picked manually using
the <b>learn as open</b> command) and perform many other operations with a transparent overlay command line triggered by the CAPSLOCK key.
It is possible to create your own commands in Python programming language.
</p>
<p style="text-align: justify;">
Find more information on command authoring in the tutorial available at Enso setting pages.
</p>
<h4>System Requirements</h4>
<p>Windows 8 or above (64-bit).</p>
<h4>History</h4>
<p style="text-align: justify;">At first there was a proprietary closed-source
<a href="https://web.archive.org/web/20140701081042/http://humanized.com/" rel="nofollow">Enso Launcher</a> from Humanized.
This version was extensible by many programming languages, but one day it went open
(<a href="https://web.archive.org/web/20110128205130/http://www.ensowiki.com/wiki/index.php?title=Main_Page" rel="nofollow"
>Enso Community Edition</a>)
and became extensible only in Python. By some reasons it has also ceased.</p>
<p>At the moment <b>Enso Open-Source</b> is the most feature-rich descendant of <b>Enso Community Edition</b>.</p>
<h4>Additional features not found in the original Enso</h4>
<ul>
<li>Python 3 support.</li>
<li>Option pages with a built-in command editor.</li>
<li>Ability to disable commands.</li>
<li>It is possible to execute user-supplied code in a separate thread on Enso start (useful for scheduling).</li>
<li>Mediaprobes (templates for automatic command generation from file-system).</li>
<li>Ability to restart using tray menu or 'enso restart' command.</li>
<li><a href="https://gchristensen.github.io/retreat">Enso Retreat</a> - a break reminder utility.</li>
</ul>
<h4>Automate daily routine with Python</h4>
<p style="text-align: justify;">
Install anything from <a href="http://pypi.org" target="_blank">PyPI</a> by issuing
<span style="font-name: 'Lucida Console', monspace; font-style: italic">enso install <package name></span> and create commands that
will empower your workflow. See an <a href="https://gchristensen.github.io/posts/custom-enso-commands/">example</a>.
</p>
<p><img src="/enso-portable/media/command-editor.png"></p>
<h4>Try "Enso" for your browser</h4>
<p style="text-align: justify;">
<a href="https://gchristensen.github.io/ishell/">iShell Extension</a> is a browser add-on that allows to perform tasks and manipulate
web-page data by utilizing a linguistic interface powered by JavaScript-based commands.
</p>
<h4>Known issues</h4>
<ul>
<li style="text-align: justify;">The trigger key will not show the command line if any privileged (adminstrator) process is under the focus (use the 'capslock toggle' command to flip CAPSLOCK state if it's wrong).
This problem could be mitigated by digitally signing the bundled Python binary. See the project <a href="https://github.com/GChristensen/enso-portable" target="_blank">GitHub page</a> for more details.</li>
<li style="text-align: justify;">Some security tools may consider <b>run-enso.exe</b> as a potentially unwanted program. These are false-positive claims, since the launcher uses API needed to run other programs.</li>
</ul>
</body>
</html>