Files
Initial_linux_setup/initial_setup.sh

31 lines
901 B
Bash
Raw Normal View History

2023-11-28 14:28:36 +01:00
#!/bin/bash
# Install some programs
2023-11-28 14:55:19 +01:00
echo "## Installing programs"
sleep 2
2023-11-28 14:28:36 +01:00
sudo apt-get update
2023-11-28 14:45:02 +01:00
sudo apt-get install nala -y
2023-11-28 14:28:36 +01:00
# Switch to nala
2023-11-28 14:45:02 +01:00
sudo nala install exa fish -y
2023-11-28 14:28:36 +01:00
# Get some custom configs
2023-11-28 14:55:19 +01:00
echo "## Downloading configs"
sleep 1
wget -O /tmp/zx_customconfig.fish https://code.strandbo.no/morten/Initial_linux_setup/raw/branch/main/zx_customconfig.fish
2023-11-28 14:28:36 +01:00
2023-11-28 15:23:16 +01:00
# Move them about and rub
2023-11-28 14:55:19 +01:00
echo "## Placing files and rubbing 'em"
2023-11-28 15:23:16 +01:00
sudo /bin/cp -f /tmp/zx_customconfig.fish /etc/fish/conf.d/02-zx_customaliases.sh
2023-11-28 14:55:19 +01:00
sudo sed -i '1,3d' /etc/profile.d/02-zx_customaliases.sh
2023-11-28 15:04:12 +01:00
sudo /bin/mv -f /tmp/zx_customconfig.fish /etc/fish/conf.d/
2023-11-28 15:23:16 +01:00
sudo chown root:root /etc/fish/conf.d/zx_customaliases.sh
2023-11-28 15:04:12 +01:00
sudo rm /tmp/zx_customconfig.fish
2023-11-28 15:23:16 +01:00
echo "SETUVAR fish_prompt_pwd_dir_length:0" >> ~/.config/fish/fish_variables
2023-11-28 14:28:36 +01:00
2023-11-28 14:55:19 +01:00
# Enter fish
fish
2023-11-28 15:04:12 +01:00
2023-11-28 14:28:36 +01:00
# Show full path in prompt
2023-11-28 14:55:19 +01:00
set -U fish_prompt_pwd_dir_length 0
echo "## It's done! ##"