Back to Fish

fish_title - define the terminal’s title¶

site/docs/4.0b1/cmds/fish_title.html

latest874 B
Original Source

fish_title - define the terminal’s title

Synopsis

fish\_title
function fish\_title...end

Description

The fish_title function is executed before and after a new command is executed or put into the foreground and the output is used as a titlebar message.

The first argument to fish_title contains the most recently executed foreground command as a string, if any.

This requires that your terminal supports programmable titles and the feature is turned on.

Example

A simple title:

function fish\_titleset -q argv[1]; or set argv fish# Looks like ~/d/fish: git log# or /e/apt: fishecho (fish\_prompt\_pwd\_dir\_length=1 prompt\_pwd): $argv;end