diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-09-23 04:05:59 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-09-23 04:05:59 +0300 |
commit | 0251f98c0f71eb0028c5ad3a50cd9dc2825745e6 (patch) | |
tree | f005fdfe246ea2bba2db0e64e01fe90ba488ef80 | |
parent | 5c79d147c57080d149afc8e69de6b69a91041a23 (diff) | |
download | swayrice-0251f98c0f71eb0028c5ad3a50cd9dc2825745e6.tar.gz swayrice-0251f98c0f71eb0028c5ad3a50cd9dc2825745e6.zip |
Terminal related improvements
turns out had to set the 'foot-extra' option so that neovim would
properly change the terminal's title.
-rw-r--r-- | dotfiles/.config/foot/foot.ini | 3 | ||||
-rwxr-xr-x | dotfiles/.local/bin/menuman | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/dotfiles/.config/foot/foot.ini b/dotfiles/.config/foot/foot.ini index 39f2f93..458d386 100644 --- a/dotfiles/.config/foot/foot.ini +++ b/dotfiles/.config/foot/foot.ini @@ -1,8 +1,11 @@ dpi-aware = no font = monospace:size=10 +login-shell = yes +term = foot-extra [colors] +alpha = 0.92 foreground = fcf8e2 #white background = 151517 #black diff --git a/dotfiles/.local/bin/menuman b/dotfiles/.local/bin/menuman index d7aaa1f..26c9bfc 100755 --- a/dotfiles/.local/bin/menuman +++ b/dotfiles/.local/bin/menuman @@ -61,4 +61,4 @@ if [ ! -z "$isterminal" ]; then man "$chosen" && exit fi -$TERMINAL -T "Manual pages - $chosen" man $chosen +$TERMINAL $SHELL -ic "man \"$chosen\"" |