X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=a5af86b2e6321ab8848fd09582693fac2dee550c;hb=3f5d80c3a9142c424ca2c482b6ad28c475349d42;hp=39f706efe21fe016fbc3f5cfd5bbe5d92d60a424;hpb=1434bb718d186e575f79cb9a9b04ebf4ca29aef2;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 39f706e..a5af86b 100755 --- a/setup.sh +++ b/setup.sh @@ -152,6 +152,19 @@ fi if installed tmux; then generate perl tmux.conf ./bin/remove-continuation.pl + # Add mappings to switch to windows 10-29 quickly. See tmux-window.pl for + # details. + perl ./tmux-window.pl 1 "`pwd`/tmux-window2.conf" > tmux-window1.conf + perl ./tmux-window.pl 2 > tmux-window2.conf + # Set absolute path to tmux-window1.conf in tmux.conf. + perl < tmux.conf > tmux.conf.tmp \ + -e 'while () { + s/\bTMUX_WINDOW_PATH\b/$ARGV[0]/; + print; + }' \ + "`pwd`/tmux-window1.conf" + mv tmux.conf.tmp tmux.conf + # 256 colors not available. if test -z "$use_256colors"; then echo tmux.conf: removing 256 colors @@ -170,6 +183,12 @@ fi # Htop overwrites the comments in its configuration file. generate cat htoprc .in +# Copy remindrc template if ~/.reminders doesn't exist yet. +if installed remind && test ! -e "$HOME/.reminders"; then + echo remind: copying template to .reminders + cp reminders.in "$HOME/.reminders" +fi + # Link setup for shells. link shell ~/.shell link bash ~/.bash