mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
fix terminal titles
This commit is contained in:
parent
a50b4b1f79
commit
0be59680b4
2 changed files with 4 additions and 1 deletions
|
@ -125,6 +125,7 @@
|
|||
set -g history-limit 10000
|
||||
set -g pane-base-index 1
|
||||
set -g renumber-windows on
|
||||
set -g set-titles on
|
||||
set -sa terminal-overrides ",*256color:Tc"
|
||||
# escape-time reduces the time where the escape key acts as an alt key
|
||||
set -s escape-time 1
|
||||
|
|
|
@ -30,6 +30,8 @@ let
|
|||
"-jobs $(jobs -pr | wc -l)"
|
||||
];
|
||||
|
||||
termtitle = ''\[\e]0;\u@\h: \w\a\]'';
|
||||
|
||||
in
|
||||
{
|
||||
environment.systemPackages = [
|
||||
|
@ -48,7 +50,7 @@ in
|
|||
local remote=y
|
||||
[ "$XDG_SESSION_TYPE" = "x11" ] && unset remote
|
||||
[ "$XDG_SESSION_TYPE" = "wayland" ] && unset remote
|
||||
PS1="$(powerline-go ${toString args})"
|
||||
PS1="${termtitle}$(powerline-go ${toString args})"
|
||||
}
|
||||
[ "$TERM" = "linux" ] || PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue