-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.popos
38 lines (28 loc) · 959 Bytes
/
.popos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
echo "Setting Awosome PopOs default settings..."
echo "Please enter sudo password:"
# Ask for the administrator password upfront
sudo -v
# Make the 200% scaling in login screen persistent
sudo tee /usr/share/glib-2.0/schemas/93_hidpi.gschema.override > /dev/null <<EOT
[org.gnome.desktop.interface]
scaling-factor=2
EOT
sudo glib-compile-schemas /usr/share/glib-2.0/schemas
# TODO:
# Install yubikey gpg software
# Install rbenv
# Install docker
# Install kinto.sh
git clone https://github.com/rbreaves/kinto.git ~/kinto
sudo apt update && sudo apt install -Y python3
~/kinto/setup.py
# Enable kinto in startup
sudo systemctl enable xkeysnail
# Install some software that I usually need
flatpak -y install flathub spotify com.sublimetext.three
sudo apt -y install slack-desktop rcm fish
# Symlink dotfiles
rcup -d ~/.dotfiles -x UNLICENSE -x README.md
# Install fish and set that as default shell
sudo chsh -s $(which fish) $USER