mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 20:04:59 +01:00
Updated setup script a bit
This commit is contained in:
parent
80226b69dc
commit
c0438de606
12
setup
12
setup
|
@ -2,12 +2,20 @@
|
||||||
|
|
||||||
echo "Setting up the stuff..."
|
echo "Setting up the stuff..."
|
||||||
|
|
||||||
if [[ "$(uname -a)" == *"Ubuntu"* ]]
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
|
||||||
|
if [[ "$(cat /etc/os-release)" == *"Ubuntu"* ]]
|
||||||
then
|
then
|
||||||
echo "Updating Ubuntu"
|
echo "Updating Ubuntu"
|
||||||
sudo apt update && sudo apt upgrade
|
sudo apt update && sudo apt upgrade
|
||||||
echo "Installing tools/utils"
|
echo "Installing tools/utils"
|
||||||
sudo apt install ripgrep fd-find make stow tmux
|
sudo apt install ripgrep fd-find make stow tmux lxsession thunar power-profiles-daemon playerctl network-manager-gnome volumeicon-alsa picom autorandr arandr
|
||||||
|
echo "Installing arc-icon-theme"
|
||||||
|
mkdir -p ~/git
|
||||||
|
git clone https://github.com/horst3180/arc-icon-theme --depth 1 ~/git/arc-icon-theme && cd ~/git/arc-icon-theme
|
||||||
|
./autogen.sh --prefix=/usr
|
||||||
|
sudo make install
|
||||||
else
|
else
|
||||||
echo "Updating Arch"
|
echo "Updating Arch"
|
||||||
sudo pacman -Syyu
|
sudo pacman -Syyu
|
||||||
|
|
Loading…
Reference in a new issue