more fiiixesss

main
fleshin 2023-07-19 22:46:51 -04:00
parent e34fa566aa
commit 60c1568fee
2 changed files with 15 additions and 8 deletions

View File

@ -47,10 +47,10 @@ xkb-options=@as []
[org/gnome/desktop/interface] [org/gnome/desktop/interface]
color-scheme='default' color-scheme='default'
cursor-theme='Adwaita' cursor-theme='Adwaita'
document-font-name='Liberation Serif 12' document-font-name='DejaVu Serif 12'
font-antialiasing='rgba' font-antialiasing='rgba'
font-hinting='slight' font-hinting='medium'
font-name='SF Pro Display 10' font-name='Droid Sans Fallback 10'
gtk-theme='WhiteSur-Light' gtk-theme='WhiteSur-Light'
icon-theme='WhiteSur' icon-theme='WhiteSur'
monospace-font-name='DroidSansM Nerd Font 10' monospace-font-name='DroidSansM Nerd Font 10'

View File

@ -1,9 +1,12 @@
#!/bin/bash #!/bin/bash
# Sudo # Sudo
sudo usermod -a -G sudo $USER echo "Enter root password"
su - root -c "usermod -a -G sudo $USER"
#sudo usermod -a -G sudo $USER
echo "Enter $USER password"
sudo usermod -a -G kvm $USER sudo usermod -a -G kvm $USER
newgrp sudo
# Switch to testing # Switch to testing
sudo cp google-chrome.list /etc/apt/sources.list.d/ sudo cp google-chrome.list /etc/apt/sources.list.d/
@ -43,7 +46,7 @@ flatpak update
flatpak install -y flatseal fondo com.usebottles.bottles com.github.wwmm.easyeffects com.ktechpit.whatsie com.ktechpit.whatsie net.davidotek.pupgui2 slack geary flatpak install -y flatseal fondo com.usebottles.bottles com.github.wwmm.easyeffects com.ktechpit.whatsie com.ktechpit.whatsie net.davidotek.pupgui2 slack geary
# Dev general # Dev general
sudo apt install -y git build-essential golang meson cmake ninja sudo apt install -y git build-essential golang meson cmake ninja-build
# Fyne deps # Fyne deps
@ -84,6 +87,8 @@ WhiteSur-icon-theme/install.sh
# Oh My ZSH # Oh My ZSH
RUNZSH=no
CHSH=yes
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
@ -98,9 +103,11 @@ sudo apt install -y steam-installer
dconf load / < dconf.toml dconf load / < dconf.toml
# Applications # Applications
sudo apt install google-chrome-stable sudo apt install -y google-chrome-stable
sudo apt install code sudo apt install -y code
# Clean up # Clean up
sudo apt autoremove sudo apt autoremove
sudo apt clean sudo apt clean
# Ask to reboot