20 lines
556 B
Bash
Executable File
20 lines
556 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
mkdir -p "$HOME/.config/gtk-3.0"
|
|
printf "[Settings]\ngtk-application-prefer-dark-theme=true\n" >> "$HOME/.config/gtk-3.0/settings.ini"
|
|
|
|
mkdir -p "$HOME/.config/cmus"
|
|
cp ./cmus\\rc "$HOME/.config/cmus/rc"
|
|
cp ./picom.conf "$HOME/.config/"
|
|
cp ./.lesskey "$HOME"
|
|
cp ./.tmux.conf "$HOME"
|
|
cp ./.vimrc "$HOME"
|
|
cp ./.xinitrc "$HOME"
|
|
|
|
mkdir -p "$HOME/desktop_env"
|
|
cd "$HOME/desktop_env"
|
|
git clone 'https://yyyi.ru/suckless-desktop/dmenu.git'
|
|
git clone 'https://yyyi.ru/suckless-desktop/st.git'
|
|
git clone 'https://yyyi.ru/suckless-desktop/dwm.git'
|
|
|