-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtemp.sh
executable file
·32 lines (23 loc) · 999 Bytes
/
temp.sh
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
# Remove some artifact error:
sudo apt-get install --reinstall libcanberra-gtk*
# Get vscode
xdg-open https://code.visualstudio.com/docs/?dv=linux64_deb
cd ~/Downloads
yes | sudo dpkg -i code*amd64.deb
# Generate ssh key
ssh-keygen -t ed25519 -C "[email protected]"
read - p "Did you enter all the way?"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519
xdg-open https://github.com/settings/ssh/new
# Always show hidden folders.
gsettings et org.nemo.desktop show-desktop-icons true
# Set the dark theme
gsettings set org.gnome.desktop.interface gtk-theme Yaru-dark
gsettings set org.gnome.desktop.interface cursor-theme Yaru-dark
gsettings set org.nemo.icon-view captions "['size', 'type', 'date_accessed', 'date_modified']"
# Also show files in the side panel of the file explorer
#gsettings set org.nemo.sidebar-panels.tree show-only-directories false
# Make the caret in bottom left always in terminal.
echo 'PS1="\[\e[1m\]\u@\h \w\n\$\[\e[0m\]"' >> ~/.bashrc