9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Switch to the script directory
|
|
_BASENAME=$(basename "$0")
|
|
cd "$(dirname "$0")" || _exit 1
|
|
|
|
cp config /etc/i3/config
|
|
cp i3wm_key_help.sh /etc/i3/i3wm_key_help.sh
|
|
cp wallpapers.sh /etc/i3/wallpapers.sh |