9 lines
245 B
Bash
Executable file
9 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
# This file copies all the folders from ~/.config that I want to share.
|
|
|
|
cp -r ~/.config/bspwm/ .
|
|
cp -r ~/.config/sxhkd/ .
|
|
cp -r ~/.config/polybar/ .
|
|
cp -r ~/.config/sxmo/hooks/ ./sxmo/
|
|
cp ~/.config/sxmo/sxmo-bspwm-xinit.sh ./sxmo/
|