Beautifully minimal terminal emulator
You might be wondering: Why yet another GTK terminal emulator? Galactic stands out for its simplicity. While other terminal emulators come with a slew of features and complex setups, Galactic keeps things straightforward. No flashy configuration menus with lots of toggles, just a simple config file and the terminal itself.
Galactic is configured using files in the TOML format. The main configuration
file is either located at $XDG_CONFIG_HOME/galactic/config.toml
or
$HOME/.config/galactic/config.toml
. Every configuration entry is optional.
The configuration under the [general]
section.
command = ["<string>"]
The command that will be run in the terminal. Defaults to the $SHELL
environment variable or /usr/bin/bash
if it is note set.
font = "<string>"
The font description of the font used in the terminal. Defaults to
"Monospace 12"
.
theme = "<string>"
The theme to be used for the terminal. See section Themes for more information. Defaults to using the Adwaita Dark theme.
The configuration under the [window]
section.
title = "<string>"
The title that will be displayed in the header bar. Defaults to "Galactic"
.
scroll_bar = <boolean>
Whether to show a vertical scroll bar or not. Defaults to true
.
size = { width = <integer>, height = <integer> }
The default size of the window in pixels. Defaults to
{ width = 1200, height = 800 }
.
padding = { horizontal = <integer>, vertical = <integer> }
The default padding inside the window in pixels. Defaults to
{ horizontal = 8, vertical = 8 }
.
Themes can be placed in the themes
directory inside of the configuration
directory. Theme files are stored in the TOML format. The theme configuration
setting needs to be set to the theme file name without any extension.
The theme file consists of a foreground and background color, as well as a color palette. They correspond to theme files from other GTK/VTE based terminal emulators, like GNOME Terminal or Tilix.
An example theme file of the Adwaita Dark theme:
foreground = "#ffffff"
background = "#1e1e1e"
palette = [
"#241F31",
"#C01C28",
"#2EC27E",
"#F5C211",
"#1E78E4",
"#9841BB",
"#0AB9DC",
"#C0BFBC",
"#5E5C64",
"#ED333B",
"#57E389",
"#F8E45C",
"#51A1FF",
"#C061CB",
"#4FD2FD",
"#F6F5F4",
]
Galactic supports several keyboard shortcuts.
Shortcut | Description |
---|---|
Ctrl Shift C |
Copy selection to clipboard |
Ctrl Shift V |
Paste from clipboard |
Ctrl + |
Increase text zoom |
Ctrl - |
Decrease text zoom |
Ctrl 0 |
Reset text zoom |
Command line options can be used to alter the behavior of the application.
Option | Description |
---|---|
--default-config |
Use the default configuration |
--config-dir |
Use a custon configuration directory |
-h --help |
Print help |
-V --version |
Print version |
Contributions in any way are very welcome. However, please stick to existing styles of patterns and formatting.
You need to have the latest stable version of Rust installed. GTK build dependencies need to be installed seperately:
# Use DNF on Fedora
sudo dnf install gcc blueprint-compiler gtk4-devel libadwaita-devel vte291-gtk4-devel
# Use Pacman on Arch
sudo pacman -S base-devel blueprint-compiler gtk4 libadwaita vte4
See License for more information.