Overview
Comment: | Use full host for tmux and sudo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
856c0f0060501d2a73fbca6f7a1b7790 |
User & Date: | js on 2022-01-07 16:06:48 |
Other Links: | manifest | tags |
Context
2022-01-07
| ||
16:13 | ssh_config: Add override for anoncvs.netbsd.org check-in: 7f7b9ddc51 user: js tags: trunk | |
16:06 | Use full host for tmux and sudo check-in: 856c0f0060 user: js tags: trunk | |
2021-11-20
| ||
09:32 | yt-dlp: Prefer 1080p30 VP9 over H264 check-in: e07aad159c user: js tags: trunk | |
Changes
Modified fish/config.fish from [487060215b] to [8cb90544d6].
︙ | ︙ | |||
31 32 33 34 35 36 37 | or set -x XDG_CACHE_HOME $HOME/.cache test -n "$XDG_DATA_HOME" or set -x XDG_DATA_HOME $HOME/.local/share set -x EDITOR vim set -x VIMINIT "source $XDG_CONFIG_HOME/vim/vimrc" set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90' | | | 31 32 33 34 35 36 37 38 39 40 | or set -x XDG_CACHE_HOME $HOME/.cache test -n "$XDG_DATA_HOME" or set -x XDG_DATA_HOME $HOME/.local/share set -x EDITOR vim set -x VIMINIT "source $XDG_CONFIG_HOME/vim/vimrc" set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90' set -x SUDO_PROMPT (printf "\033[0;31m[\033[1;31msudo -> %%U\033[0;31m]\033[0m Password for \033[1m%%p@%%H\033[0m: ") set -x GNUPGHOME $XDG_DATA_HOME/gnupg set -x CVS_RSH ssh |
Modified tmux/tmux.conf from [365f8f9826] to [e8a045fbcb].
1 2 3 4 5 6 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi set -g escape-time 0 set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S " | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | set -g default-terminal screen-256color set -g mouse on setw -g mode-keys vi set -g escape-time 0 set -g status-style bg=colour233,fg=colour25 set -g status-left "#[fg=colour52]#S " set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#H #[fg=colour40]#(date +%H:%M)" set -w -g window-status-current-style fg=colour39,bg=colour236 set -w -g window-status-bell-style fg=colour233,bg=colour124 bind c new-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" set-option -sa terminal-overrides ",xterm*:Tc" |
Modified zshrc from [a1345d5431] to [2119c0f4e1].
1 2 3 4 5 6 7 | export XDG_CONFIG_HOME="$HOME/.config" export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export EDITOR="vim" export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc" export PAGER="less" export LS_COLORS='di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90' | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | export XDG_CONFIG_HOME="$HOME/.config" export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export EDITOR="vim" export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc" export PAGER="less" export LS_COLORS='di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90' export SUDO_PROMPT=$(printf "\033[0;31m[\033[1;31msudo -> %%U\033[0;31m]\033[0m Password for \033[1m%%p@%%H\033[0m: ") export GNUPGHOME="$XDG_DATA_HOME/gnupg" export CVS_RSH="ssh" LISTMAX=32768 WORDCHARS="*?[];!#~" local grep="" local grep_color="auto" local ls="" |
︙ | ︙ |