-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixes.sh
60 lines (47 loc) · 1.54 KB
/
fixes.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#Fixes
cat >>~/.bashrc <<EOL
if [ -f ~/.bash_profile ]; then
source ~/.bash_profile
fi
EOL
sudo cat >~/etc/ssmtp/ssmtp.conf <<EOL
#
# /etc/ssmtp.conf -- a config file for sSMTP sendmail.
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
# The place where the mail goes. The actual machine name is required
# no MX records are consulted. Commonly mailhosts are named mail.domain.com
# The example will fit if you are in domain.com and you mailhub is so named.
mailhub=smtp.gmail.com:587
# The address where the mail appears to come from for user authentication.
rewriteDomain=gmail.com
# The full hostname. Must be correctly formed, fully qualified domain name or GMail will reject connection.
hostname=migacz.hp360.tld
# Use SSL/TLS before starting negotiation
TLS_CA_FILE=/etc/ssl/certs/ca-certificates.crt
UseTLS=Yes
UseSTARTTLS=Yes
# Username/Password
AuthUser=migacz85
AuthPass=***enter**yourpassword
AuthMethod=LOGIN
# Email 'From header's can override the default domain?
FromLineOverride=yes
EOL
# # Fix touchpad in i3
# sudo mkdir -p /etc/X11/xorg.conf.d && sudo tee <<'EOF' /etc/X11/xorg.conf.d/90-touchpad.conf 1> /dev/null
# Section "InputClass"
# Identifier "touchpad"
# MatchIsTouchpad "on"
# Driver "libinput"
# Option "Tapping" "on"
# EndSection
# EOF
# cat >/etc/asound.conf <<EOL
# pcm.bluetooth {
# type bluetooth
# device 68:DB:F5:5D:42:E2 # change this MAC address to the one you wrote down
# }
# EOL