This repository provides Catppuccin color scheme themes for tut
, a TUI for Mastodon. (tut
is located at https://github.com/RasmusLindroth/tut.) Choose from various flavors of Catppuccin to customize your tut
experience.
-
Clone this repository (if you haven't already):
git clone https://github.com/ColetteDiskette/catppuccin-tut cd catppuccin-tut
-
Locate the desired theme: Navigate into the subdirectory corresponding to the flavor you wish to use. Inside the subdirectory are TOML files for each accent color you can use.
-
Copy the desired theme: Copy the chosen theme's TOML file to your
tut
themes directory. (From inside the chosen flavor's subdirectory:)mkdir -p ~/.config/tut/themes/ cp <desired-theme>.toml ~/.config/tut/themes/
For example, to use the Catppuccin Mocha Pink theme:
cp catppuccin-mocha-pink.toml ~/.config/tut/themes/
-
Edit the
tut
configuration: Open yourtut
configuration file (with nano, micro, vim, or the editor of your choice):nano ~/.config/tut/config.toml
-
Set the theme: Find the line defining the
theme
variable (line 468 at the time of writing this README) and change its value to the basename of the TOML file you copied.For example:
theme = "catppuccin-mocha-pink"
-
Save and exit: Save the file and exit the editor (in
nano
, pressCTRL + O
, thenEnter
, thenCTRL + X
).