You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
404 B
20 lines
404 B
#!/bin/bash
|
|
|
|
dotfiles=$1
|
|
|
|
scripts=$dotfiles/scripts
|
|
|
|
echo "Enabling syncthing..."
|
|
sudo systemctl enable --now syncthing@$USER
|
|
|
|
echo "Enabling pipewire pulse backend..."
|
|
systemctl enable --now --user pipewire-pulse
|
|
|
|
echo "Adding user to docker group..."
|
|
sudo usermod -aG docker $USER
|
|
|
|
echo "Enabling ly..."
|
|
sudo systemctl enable ly
|
|
|
|
echo "Installing vscode extensions..."
|
|
$scripts/install/vscode $dotfiles |