From 78ac13672e4800f1bfbb8d0075e2eab47feb73b8 Mon Sep 17 00:00:00 2001 From: clint Date: Tue, 2 Aug 2022 19:07:53 -0500 Subject: [PATCH] stow bash script --- i3/.config/i3/config | 2 +- stow_dotfiles.sh | 8 ++++++++ vimrc/.vimrc | 4 ++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 stow_dotfiles.sh diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 4547584..f50334d 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -247,7 +247,7 @@ set $bar-inactive_workspace #755B69 #} # set background on startup -set $wallpaper ~/Pictures/wallpapers/galaxy.jpg +set $wallpaper ~/Pictures/wallpapers/red_trees.jpg exec --no-startup-id feh --bg-fill $wallpaper # turn picom on on start up diff --git a/stow_dotfiles.sh b/stow_dotfiles.sh new file mode 100755 index 0000000..2f8a5b1 --- /dev/null +++ b/stow_dotfiles.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# 1. list dirs +# 2. pipe them into stow +# 3. stow them at ~ +# 4. be verbose + +/bin/ls -d */ | xargs stow -t ~ -v diff --git a/vimrc/.vimrc b/vimrc/.vimrc index 8244ad6..2dff349 100644 --- a/vimrc/.vimrc +++ b/vimrc/.vimrc @@ -27,6 +27,10 @@ execute pathogen#infect() " Always show file name set laststatus=2 +" Enter to insert blank line below current, Shift+Enter to insert above +map o +map O + " Folding (move to python specific vim file?) set foldmethod=indent set foldnestmax=2