desktop-ubuntu/i3/_install.sh

21 lines
292 B
Bash
Raw Normal View History

2023-06-18 15:34:39 +02:00
#!/usr/bin/zsh
# install i3 + rofi
sudo apt install -y \
i3 rofi
# backup current config
mv ~/.config/i3/config \
~/.config/i3/config_`date '+%Y-%m-%d@%H-%M'`.bak
# link new config
2024-04-23 14:31:53 +02:00
mkdir -p ~/.config/i3
2023-06-18 15:34:39 +02:00
cd /Cfg/i3/
ln -s `pwd`/config \
~/.config/i3/
# restart i3
i3-msg restart