├── Screenshot_1.png └── README.md /Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shovoalways/linux/HEAD/Screenshot_1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Linux Command for First Time Setup 2 | 3 | ## 📝 Why? 4 | Every time when I install Linux, I need to do this sometimes I miss some and need to do it again. So I made this repository to ensure everything works fine. 5 | 6 | ### Install Update 7 | ```bash 8 | sudo apt update 9 | ``` 10 | 11 | ### Install Upgrade 12 | ```bash 13 | sudo apt upgrade 14 | ``` 15 | 16 | ### Install Favorite Apps 17 | ```bash 18 | sudo apt install obs-studio vlc gimp gparted synaptic 19 | ``` 20 | 21 | ### Install Ubuntu Restricted Extras 22 | ```bash 23 | sudo apt install ubuntu-restricted-extras 24 | ``` 25 | 26 | ### Install Preload 27 | ```bash 28 | sudo apt install preload 29 | ``` 30 | 31 | ### Improve Laptop Battery 32 | ```bash 33 | sudo apt install tlp tlp-rdw 34 | ``` 35 | 36 | ### Install Custom Softwere 37 | ```bash 38 | sudo dpkg -i (package location)] 39 | ``` 40 | 41 | ### Install Gnome 42 | ```bash 43 | sudo apt install gnome-tweaks -y 44 | sudo apt install gnome-shell-extensions 45 | sudo apt install gnome-shell-extension-manager 46 | ``` 47 | 48 | ### Taskbar app click to open 49 | ```bash 50 | gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize' 51 | ``` 52 | 53 | 54 | ### Curl 55 | ```bash 56 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash 57 | ``` 58 | 59 | 60 | ### To install the latest Node.js 61 | ```bash 62 | nvm install node 63 | 64 | nvm install --lts 65 | ``` 66 | 67 | ### Install Theme 68 | https://www.gnome-look.org/p/1619506 69 | Create Two folder on home directory and press Ctrl + H then create .themes & .icons 70 | 71 | ## 🧑‍💻 Contributors 72 | - [@Ali Hossain](https://github.com/shovoalways/) 73 | 74 | 75 | ## 🥰 Follow me 76 | - [@Github](https://github.com/shovoalways/) 77 | - [@Facebook](https://facebook.com/shovoalways/) 78 | - [@Twitter](https://twitter.com/shovoalways/) 79 | - [@Instagram](https://instagram.com/shovoalways/) 80 | --------------------------------------------------------------------------------