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 -x, --execute
37 Execute command
38
39 -e, --xterm-execute
40 Execute command (compatible with xterm's -e option)
41
42 -l, --login
43 Login shell
44
45 -t, --title
46 Set window title
47
48 -c, --columns
49 Set columns number
50
51 -r, --rows
52 Set rows number
53
54 -h, --hold
55 Hold window after execute command
56
57 -d, --working-directory
58 Set working directory
59
60 -m, --maximize
61 Maximize window
62
63 -s, --fullscreen
64 Fullscreen mode
65
66 --display=DISPLAY
67 X display to use
68
69 --config-file=FILENAME
70 Use alternate configuration file. Path is relative to the
71 sakura config dir. (Example: ~/.config/sakura/FILENAME).
72
74 --class=CLASS
75 Program class as used by the window manager
76
77 --name=NAME
78 Program name as used by the window manager
79
80 --screen=SCREEN
81 X screen to use
82
83 --sync Make X calls synchronous
84
85 --gtk-module=MODULES
86 Load additional GTK+ modules
87
88 --g-fatal-warnings
89 Make all warnings fatal
90
92 sakura supports keyboard bindings. They are configurable by setting the
93 following properties in your sakura config file
94 (~/.config/sakura/sakura.conf).
95
96 ACCELERATORS
97 Accelerators can be set to any mask value from the GdkModifierType in
98 gdktypes.h; see:
99
100 http://www.krugle.org/examples/p-6R7SuZt1c28ljzpZ/gdktypes.h
101
102 or, on your own system:
103
104 /usr/include/gtk-2.0/gdk/gdkkeysyms.h
105
106 Mask values can be combined by ORing them.
107
108 For example, to set the delete tab accelerator to Ctrl + Shift:
109
110 del_tab_accelerator=5
111
112 because GDK_SHIFT_MASK has a value of 1 (1 << 0), and GDK_CONTROL_MASK
113 has a value of 4 (1 << 2); ORing them together, you get 5.
114
115 I realise that this configuration is not so friendly to non-
116 programmers, but it is a start. :)
117
118 KEYS
119 For example, to set the add tab key to 'T':
120
121 add_tab_key=T
122
123 Before sakura used keycodes instead of strings. They're still valid.
124
125 DEFAULTS
126 Ctrl + Shift + T -> New tab
127 Ctrl + Shift + W -> Close current tab
128 Ctrl + Shift + C -> Copy selected text
129 Ctrl + Shift + V -> Paste selected text
130 Alt + Left cursor -> Previous tab
131 Alt + Right cursor -> Next tab
132 Alt + [1-9] -> Switch to tab N (1-9)
133 Ctrl + Shift + S -> Toggle scrollbar
134 Ctrl + Shift + Mouse left button -> Open link
135 F11 -> Fullscreen
136 Shift + PageUp -> Move up through scrollback by page
137 Shift + PageDown -> Move down through scrollback by page
138 Ctrl + Shift + Up -> Move up through scrollback by line
139 Ctrl + Shift + Down -> Move down through scrollback by line
140
141 You can also increase and decrease the font size in the GTK+ standard
142 way (not configurable):
143
144 Ctrl + '+' -> Increase font size
145 Ctrl + '-' -> Decrease font size
146
148 sakura is hosted on Launchpad. Bugs can be filed at:
149
150 https://bugs.launchpad.net/sakura
151
153 sakura was written by David Gómez <david@pleyades.net>.
154
155 This manual page was written by Andrew Starr-Bochicchio
156 <a.starr.b@gmail.com>.
157
158 Both are released under the GNU General Public License, version 2 or
159 later.
160
161
162
1633.7.0 2019-08-18 SAKURA(1)