1SAKURA(1) SAKURA(1)
2
3
4
6 sakura - A simple but powerful libvte-based terminal emulator.
7
9 sakura [options...]
10
12 sakura is a terminal emulator based on GTK+ and VTE. It's a terminal
13 emulator with few dependencies, so you don't need a full GNOME desktop
14 installed to have a decent terminal emulator.
15
17 -?, --help
18 Show help options.
19
20 --help-all
21 Show all help options
22
23 --help-gtk
24 Show GTK+ Options
25
27 -v, --version
28 Print version number
29
30 -f, --font
31 Select initial terminal font
32
33 -n, --ntabs
34 Select initial number of tabs
35
36 -e, --execute
37 Execute command
38
39 -l, --login
40 Login shell
41
42 -t, --title
43 Set window title
44
45 -c, --columns
46 Set columns numbe
47
48 -r, --rows
49 Set rows number
50
51 -h, --hold
52 Hold window after execute command
53
54 --display=DISPLAY
55 X display to use
56
58 --class=CLASS
59 Program class as used by the window manager
60
61 --name=NAME
62 Program name as used by the window manager
63
64 --screen=SCREEN
65 X screen to use
66
67 --sync Make X calls synchronous
68
69 --gtk-module=MODULES
70 Load additional GTK+ modules
71
72 --g-fatal-warnings
73 Make all warnings fatal
74
76 sakura supports keyboard bindings. They are configurable by setting the
77 following properties in your sakura config file
78 (~/.config/sakura/sakura.conf).
79
80 ACCELERATORS
81 Accelerators can be set to any mask value from the GdkModifierType in
82 gdktypes.h; see:
83
84 http://www.krugle.org/examples/p-6R7SuZt1c28ljzpZ/gdktypes.h
85
86 or, on your own system:
87
88 /usr/include/gtk-2.0/gdk/gdkkeysyms.h
89
90 Mask values can be combined by ORing them.
91
92 For example, to set the delete tab accelerator to Ctrl + Shift:
93
94 del_tab_accelerator=5
95
96 because GDK_SHIFT_MASK has a value of 1 (1 << 0), and GDK_CONTROL_MASK
97 has a value of 4 (1 << 2); ORing them together, you get 5.
98
99 I realise that this configuration is not so friendly to non-
100 programmers, but it is a start. :)
101
102 KEYS
103 For example, to set the add tab key to 'T':
104
105 add_tab_key=T
106
107 Before sakura used keycodes instead of strings. They're still valid.
108
109 DEFAULTS
110 Ctrl + Shift + T -> New tab
111 Ctrl + Shift + W -> Close current tab
112 Ctrl + Shift + C -> Copy selected text
113 Ctrl + Shift + V -> Paste selected text
114 Alt + Left cursor -> Previous tab
115 Alt + Right cursor -> Next tab
116 Alt + [1-9] -> Switch to tab N (1-9)
117 Ctrl + Shift + S -> Toggle scrollbar
118 Ctrl + Shift + Mouse left button -> Open link
119 F11 -> Fullscreen
120
121 You can also increase and decrease the font size in the GTK+ standard
122 way (not configurable):
123
124 Ctrl + '+' -> Increase font size
125 Ctrl + '-' -> Decrease font size
126
128 sakura is hosted on Launchpad. Bugs can be filed at:
129
130 https://bugs.launchpad.net/sakura
131
133 sakura was written by David Gomez <david@pleyades.net>.
134
135 This manual page was written by Andrew Starr-Bochicchio
136 <a.starr.b@gmail.com>.
137
138 Both are released under the GNU General Public License, version 2 or
139 later.
140
141
142
1432.3.8 2010-04-17 SAKURA(1)