1SAKURA(1)                                                            SAKURA(1)
2
3
4

NAME

6       sakura - A simple but powerful libvte-based terminal emulator.
7

SYNOPSIS

9       sakura [options...]
10

DESCRIPTION

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

HELP OPTIONS

17       -?, --help
18               Show help options.
19
20       --help-all
21               Show all help options
22
23       --help-gtk
24               Show GTK+ Options
25

APPLICATION OPTIONS

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       -c, --columns
46               Set columns number
47
48       -r, --rows
49               Set rows number
50
51       -h, --hold
52               Hold window after execute command
53
54       -d, --working-directory
55               Set working directory
56
57       -m, --maximize
58               Maximize window
59
60       -s, --fullscreen
61               Fullscreen mode
62
63       --display=DISPLAY
64               X display to use
65
66       --config-file=FILENAME
67               Use alternate configuration file. Path is relative to the
68               sakura config dir.  (Example: ~/.config/sakura/FILENAME).
69

GTK+ OPTIONS

71       --class=CLASS
72               Program class as used by the window manager
73
74       --name=NAME
75               Program name as used by the window manager
76
77       --screen=SCREEN
78               X screen to use
79
80       --sync  Make X calls synchronous
81
82       --gtk-module=MODULES
83               Load additional GTK+ modules
84
85       --g-fatal-warnings
86               Make all warnings fatal
87

CONFIGURATION

89       show_tab_bar=[always | multiple | never]
90               This list of options is currently incomplete.
91

KEYBINDINGS SUPPORT

93       sakura supports keyboard bindings. They are configurable by setting the
94       following properties in your sakura config file
95       (~/.config/sakura/sakura.conf).
96
97   ACCELERATORS
98       Accelerators can be set to any mask value from the GdkModifierType in
99       gdktypes.h; see:
100
101       http://gtk.php.net/manual/en/html/gdk/gdk.enum.modifiertype.html
102
103       Mask values can be combined by ORing them.
104
105       For example, to set the delete tab accelerator to Ctrl + Shift:
106
107       del_tab_accelerator=5
108
109       because GDK_SHIFT_MASK has a value of 1 (1 << 0), and GDK_CONTROL_MASK
110       has a value of 4 (1 << 2); ORing them together, you get 5.
111
112       I realise that this configuration is not so friendly to non-
113       programmers, but it is a start. :)
114
115   KEYS
116       For example, to set the add tab key to 'T':
117
118       add_tab_key=T
119
120       Before sakura used keycodes instead of strings. They're still valid.
121
122   DEFAULTS
123           Ctrl + Shift + T                 -> New tab
124           Ctrl + Shift + W                 -> Close current tab
125           Ctrl + Shift + C                 -> Copy selected text
126           Ctrl + Shift + V                 -> Paste selected text
127           Ctrl + Left cursor               -> Previous tab
128           Ctrl + Right cursor              -> Next tab
129           Ctrl + [1-9]                     -> Switch to tab N (1-9)
130           Ctrl + Shift + S                 -> Toggle scrollbar
131           Ctrl + Shift + Mouse left button -> Open link
132           F11                              -> Fullscreen
133           Shift + PageUp                   -> Move up through scrollback by page
134           Shift + PageDown                 -> Move down through scrollback by page
135           Ctrl + Shift + Up                -> Move up through scrollback by line
136           Ctrl + Shift + Down              -> Move down through scrollback by line
137
138       You can also increase and decrease the font size in the GTK+ standard
139       way (not configurable):
140
141           Ctrl + '+'                       -> Increase font size
142           Ctrl + '-'                       -> Decrease font size
143

BUGS

145       sakura is hosted on Launchpad. Bugs can be filed at:
146
147       https://bugs.launchpad.net/sakura
148

AUTHORS

150       sakura was written by David Gómez <david@pleyades.net>.
151
152       This manual page was written by Andrew Starr-Bochicchio
153       <a.starr.b@gmail.com>.
154
155       Both are released under the GNU General Public License, version 2 or
156       later.
157
158
159
1603.8.7                             2023-04-23                         SAKURA(1)
Impressum