You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
# Copy dotfiles to /etc/skel:
|
|
rsync -a /usr/share/i3-dotfiles/etc/skel/ /etc/skel/
|
|
|
|
# Copy dotfiles to /root/:
|
|
rsync -a /usr/share/i3-dotfiles/etc/skel/ /root/
|
|
|
|
# Copy scripts to /usr/bin/:
|
|
rsync -a /usr/share/i3-dotfiles/usr/bin/ /usr/bin/
|