mirror of
				https://github.com/kevinveenbirkenbach/linux-image-manager.git
				synced 2025-11-04 01:18:10 +00:00 
			
		
		
		
	Implemented multiple changes
This commit is contained in:
		
							
								
								
									
										0
									
								
								scripts/decrypt-data.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								scripts/decrypt-data.sh
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								scripts/encrypt-data.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								scripts/encrypt-data.sh
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								scripts/export-data-to-system.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								scripts/export-data-to-system.sh
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								scripts/import-data-from-system.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								scripts/import-data-from-system.sh
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										59
									
								
								scripts/system-setup.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								scripts/system-setup.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,59 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
echo "--------------------------------------------"
 | 
			
		||||
echo "Customized Pacman Core Software"
 | 
			
		||||
echo "--------------------------------------------"
 | 
			
		||||
echo ""
 | 
			
		||||
echo "Synchronising packages..."
 | 
			
		||||
echo "Synchronizing programing languages..."
 | 
			
		||||
sudo pacman --needed -S jdk11-openjdk python php
 | 
			
		||||
echo "Synchronizing administration tools..."
 | 
			
		||||
sudo pacman --needed -S htop tree git base-devel yay make gcc cmake
 | 
			
		||||
echo "Synchronizing gui tools..."
 | 
			
		||||
sudo pacman --needed -S gnome-shell-extensions
 | 
			
		||||
echo "Install NASA picture of the day GNOME extension..."
 | 
			
		||||
git clone https://github.com/Elinvention/gnome-shell-extension-nasa-apod.git $HOME/.local/share/gnome-shell/extensions/nasa_apod@elinvention.ovh
 | 
			
		||||
gnome-shell-extension-tool -e nasa_apod@elinvention.ovh
 | 
			
		||||
echo "Synchronizing office tools..."
 | 
			
		||||
sudo pacman --needed -S chromium gimp
 | 
			
		||||
echo "Synchronizing communication tools..."
 | 
			
		||||
yay pacman --needed -S slack-desktop skypeforlinux-stable-bin
 | 
			
		||||
echo "Synchronizing development tools..."
 | 
			
		||||
echo "Synchronizing visualization tools..."
 | 
			
		||||
sudo pacman --needed -S dia
 | 
			
		||||
echo "Synchronizing IDE's..."
 | 
			
		||||
sudo pacman --needed -S eclipse-java dia atom
 | 
			
		||||
echo "Installing atom packages..."
 | 
			
		||||
apm install -c \
 | 
			
		||||
	atom-ide-ui\
 | 
			
		||||
	ide-bash\
 | 
			
		||||
	ide-python\
 | 
			
		||||
	ide-c-cpp\
 | 
			
		||||
	ide-java\
 | 
			
		||||
	ide-yaml\
 | 
			
		||||
	atom-autocomplete-php\
 | 
			
		||||
	es6-snippets\
 | 
			
		||||
	javascript-snippets\
 | 
			
		||||
	emmet\
 | 
			
		||||
	git-blame\
 | 
			
		||||
	git-plus\
 | 
			
		||||
	script\
 | 
			
		||||
	ask-stack\
 | 
			
		||||
	atom-beautify\
 | 
			
		||||
	highlight-selected\
 | 
			
		||||
	autocomplete-paths\
 | 
			
		||||
	todo-show\
 | 
			
		||||
	docblockr\
 | 
			
		||||
npm i -g bash-language-server #Needed by atom-package ide-bash
 | 
			
		||||
echo "Synchronizing containerization tools..."
 | 
			
		||||
sudo pacman --needed -S docker
 | 
			
		||||
echo "Synchronizing orchestration tools..."
 | 
			
		||||
sudo pacman --needed -S ansible
 | 
			
		||||
echo "Add current user($USER) to user group docker..."
 | 
			
		||||
sudo usermod -a -G docker $USER
 | 
			
		||||
echo "Enable docker service..."
 | 
			
		||||
sudo systemctl enable docker --now
 | 
			
		||||
echo "Synchronizing games..."
 | 
			
		||||
sudo pacman --needed -S 0ad warzone2100
 | 
			
		||||
yay -S emulationstation
 | 
			
		||||
echo "More game recomendations you will find here: https://wiki.archlinux.org/index.php/List_of_games..."
 | 
			
		||||
echo "More software recomendations you will find here: https://wiki.archlinux.org/index.php/list_of_applications"
 | 
			
		||||
		Reference in New Issue
	
	Block a user