14 lines
484 B
Bash
Executable File
14 lines
484 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Switch to the script directory
|
|
_BASENAME=$(basename "$0")
|
|
cd "$(dirname "$0")" || _exit 1
|
|
|
|
cp xinitrc /etc/X11/xinit/xinitrc
|
|
cp .Xresources /etc/X11/xinit/.Xresources
|
|
cp 00-keyboard.conf /etc/X11/xorg.conf.d/00-keyboard.conf
|
|
|
|
wget https://raw.githubusercontent.com/qwerty-fr/qwerty-fr/master/linux/us_qwerty-fr -O /tmp/us_qwerty-fr
|
|
cp /usr/share/X11/xkb/symbols/us /usr/share/X11/xkb/symbols/us_qwerty-fr
|
|
cat /tmp/us_qwerty-fr >> /usr/share/X11/xkb/symbols/us_qwerty-fr
|