12 lines
176 B
Bash
12 lines
176 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Install dependencies
|
||
|
|
||
|
sudo pacman -S --needed hyprland hyprcursor hyprlock swaybg kitty wofi
|
||
|
|
||
|
# Copy things into place
|
||
|
|
||
|
cp -r * ~/.config/
|
||
|
|
||
|
echo "Done!"
|