• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

COPYRIGHTH A D04-Aug-20141.5 KiB2722

ChangelogH A D04-Aug-20141.9 KiB7154

README.mdH A D04-Aug-2014907 3427

bookmark.cppH A D04-Aug-20141.9 KiB5827

bookmark.hH A D04-Aug-20141.7 KiB4716

completion.cppH A D04-Aug-20143.9 KiB13881

completion.hH A D04-Aug-20141.7 KiB4717

history.cppH A D04-Aug-20142.5 KiB9756

history.hH A D04-Aug-20141.7 KiB4717

thingylaunch.cppH A D04-Aug-201410 KiB413276

util.cppH A D04-Aug-20141.6 KiB4113

util.hH A D04-Aug-20141.5 KiB378

x11_interface.hH A D04-Aug-20142 KiB5322

x11_libx11.cppH A D04-Aug-20147 KiB235166

x11_xcb.cppH A D04-Aug-20149.7 KiB308214

README.md

1thingylaunch
2============
3
4Simple X11 application launcher.
5
6The project is a fork of the original thinglaunch by Matt Johnston, available
7at http://unix.freecode.com/projects/thinglaunch.
8
9Thingylaunch has been enhanced with the following features:
10
11 * tab-completion
12 * history navigation, with the UpArrow and DownArrow keys
13 * bookmarks support
14   * loaded from the ~/.thingylaunch.bookmarks file, consisting of lines structured as follows:
15   <pre>char command</pre>
16   * activated by Alt+char
17 * command line arguments
18<pre>
19   -fg    foreground color
20   -bg    background color
21   ⁻fo    font foundry
22   -ff    font family
23   -fw    font weight
24   -fs    font slant
25   -fwn   font width name
26   -fsn   font style name
27   -fps   font point size
28</pre>
29
30 * use either libX11 or libxcb, selected at build time using the CMake option
31   <pre>-DUSE_XCB=ON</pre>
32
33See also http://gahr.ch/thingylaunch/ .
34