Files
Initial_linux_setup/initial_setup.sh

18 lines
539 B
Bash
Raw Normal View History

2023-11-28 14:28:36 +01:00
#!/bin/bash
# Install some programs
sudo apt-get update
sudo apt-get install nala --force-yes
# Switch to nala
sudo nala install exa fish --force-yes
# Get some custom configs
2023-11-28 14:31:22 +01:00
wget -O /tmp/zx_customconfig.fish https://code.strandbo.org/zxczc/zxczxc/zx_customconfig.fish
2023-11-28 14:28:36 +01:00
# Move them about
2023-11-28 14:31:22 +01:00
/bin/cp -f /tmp/zx_customconfig.fish /etc/profile.d/02-zx_customaliases.sh
2023-11-28 14:28:36 +01:00
sed -e '1,3d' < /etc/profile.d/02-zx_customaliases.sh
2023-11-28 14:31:22 +01:00
/bin/mv -f /tmp/zx_customconfig.fish /etc/fish/conf.d/
2023-11-28 14:28:36 +01:00
# Show full path in prompt
set -U fish_prompt_pwd_dir_length 0