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://gtk.php.net/manual/en/html/gdk/gdk.enum.modifiertype.html
101
102 Mask values can be combined by ORing them.
103
104 For example, to set the delete tab accelerator to Ctrl + Shift:
105
106 del_tab_accelerator=5
107
108 because GDK_SHIFT_MASK has a value of 1 (1 << 0), and GDK_CONTROL_MASK
109 has a value of 4 (1 << 2); ORing them together, you get 5.
110
111 I realise that this configuration is not so friendly to non-
112 programmers, but it is a start. :)
113
114 KEYS
115 For example, to set the add tab key to 'T':
116
117 add_tab_key=T
118
119 Before sakura used keycodes instead of strings. They're still valid.
120
121 DEFAULTS
122 Ctrl + Shift + T -> New tab
123 Ctrl + Shift + W -> Close current tab
124 Ctrl + Shift + C -> Copy selected text
125 Ctrl + Shift + V -> Paste selected text
126 Alt + Left cursor -> Previous tab
127 Alt + Right cursor -> Next tab
128 Alt + [1-9] -> Switch to tab N (1-9)
129 Ctrl + Shift + S -> Toggle scrollbar
130 Ctrl + Shift + Mouse left button -> Open link
131 F11 -> Fullscreen
132 Shift + PageUp -> Move up through scrollback by page
133 Shift + PageDown -> Move down through scrollback by page
134 Ctrl + Shift + Up -> Move up through scrollback by line
135 Ctrl + Shift + Down -> Move down through scrollback by line
136
137 You can also increase and decrease the font size in the GTK+ standard
138 way (not configurable):
139
140 Ctrl + '+' -> Increase font size
141 Ctrl + '-' -> Decrease font size
142
144 sakura is hosted on Launchpad. Bugs can be filed at:
145
146 https://bugs.launchpad.net/sakura
147
149 sakura was written by David Gómez <david@pleyades.net>.
150
151 This manual page was written by Andrew Starr-Bochicchio
152 <a.starr.b@gmail.com>.
153
154 Both are released under the GNU General Public License, version 2 or
155 later.
156
157
158
1593.7.1 2021-01-27 SAKURA(1)