7 lines
163 B
Bash
Executable file
7 lines
163 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/ .
|