tmux: Set title of terminal
Anirudh Oppiliappan x@icyphox.sh
Sun, 24 Jan 2021 19:27:54 +0530
2 files changed,
26 insertions(+),
4 deletions(-)
M
darwin/com.googlecode.iterm2.plist
→
darwin/com.googlecode.iterm2.plist
@@ -539,12 +539,16 @@ <key>DisableTmuxWindowResizing</key>
<false/> <key>HapticFeedbackForEsc</key> <false/> + <key>HideScrollbar</key> + <true/> <key>HotkeyMigratedFromSingleToMulti</key> <true/> <key>New Bookmarks</key> <array> <dict> <key>ASCII Anti Aliased</key> + <true/> + <key>Allow Title Reporting</key> <true/> <key>Ambiguous Double Width</key> <false/>@@ -779,6 +783,8 @@ <key>Columns</key>
<integer>80</integer> <key>Command</key> <string>/usr/local/bin/tmux -CC new -A -s main</string> + <key>Cursor Boost</key> + <real>0.0</real> <key>Cursor Color</key> <dict> <key>Blue Component</key>@@ -818,6 +824,8 @@ <key>Custom Command</key>
<string>No</string> <key>Custom Directory</key> <string>No</string> + <key>Custom Tab Title</key> + <string></string> <key>Default Bookmark</key> <string>No</string> <key>Description</key>@@ -1148,6 +1156,8 @@ <real>0.35916060209274292</real>
<key>Red Component</key> <real>0.0</real> </dict> + <key>Minimum Contrast</key> + <real>0.37911934384031792</real> <key>Mouse Reporting</key> <true/> <key>Name</key>@@ -1157,7 +1167,7 @@ <string>Monaco 12</string>
<key>Non-ASCII Anti Aliased</key> <true/> <key>Normal Font</key> - <string>SFMono-Regular 14</string> + <string>SFMono-Regular 12</string> <key>Option Key Sends</key> <integer>2</integer> <key>Prompt Before Closing 2</key>@@ -1212,12 +1222,16 @@ <key>Use Bold Font</key>
<true/> <key>Use Bright Bold</key> <true/> + <key>Use Cursor Guide</key> + <false/> + <key>Use Custom Tab Title</key> + <true/> <key>Use Italic Font</key> <true/> <key>Use Non-ASCII Font</key> <false/> <key>Vertical Spacing</key> - <real>1</real> + <real>1.0600000000000001</real> <key>Visual Bell</key> <true/> <key>Window Type</key>@@ -1955,6 +1969,8 @@ <key>ShowFullScreenTabBar</key>
<true/> <key>SoundForEsc</key> <false/> + <key>SplitPaneDimmingAmount</key> + <real>0.41763639118680629</real> <key>StatusBarPosition</key> <integer>0</integer> <key>TabStyleWithAutomaticOption</key>@@ -1965,8 +1981,14 @@ <key>TerminalVMargin</key>
<integer>20</integer> <key>TmuxUsesDedicatedProfile</key> <false/> + <key>UseBorder</key> + <false/> <key>VisualIndicatorForEsc</key> <false/> + <key>WindowNumber</key> + <false/> + <key>findMode_iTerm</key> + <integer>0</integer> <key>kCPFavoritesUserDefaultsKey</key> <array> <data>
M
home/.tmux.conf
→
home/.tmux.conf
@@ -1,4 +1,6 @@
set -g prefix C-q +set -g set-titles on +set-option -g set-titles-string "#S -- #T" unbind-key C-b bind-key C-q send-prefix set -g update-environment "KEYBOARD_LAYOUT"@@ -79,5 +81,3 @@ set -g status-left "#[fg=colour8]time #[fg=colour15]#(date +"%H:%M") "
set -ag status-left "#[fg=colour8]date #[fg=colour15]#(date.sh) " set -ag status-left "#[fg=colour8]bat #[fg=colour15]#(~/bin/bat -q) " set -ag status-left "#[fg=colour8]#(~/bin/np.sh -a) #[fg=colour15]#(~/bin/np.sh -t)" - -run-shell ~/leet/tmux-resurrect/resurrect.tmux