forked from maximbaz/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-user.sh
executable file
·219 lines (195 loc) · 7 KB
/
setup-user.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/bin/bash
set -e
exec 2> >(while read line; do echo -e "\e[01;31m$line\e[0m"; done)
MY_PGP_KEY_ID="56C3E775E72B0C8B1C0C1BD0B5DB77409B11B601"
dotfiles_dir="$(
cd "$(dirname "$0")"
pwd
)"
cd "$dotfiles_dir"
link() {
orig_file="$dotfiles_dir/$1"
if [ -n "$2" ]; then
dest_file="$HOME/$2"
else
dest_file="$HOME/$1"
fi
mkdir -p "$(dirname "$orig_file")"
mkdir -p "$(dirname "$dest_file")"
rm -rf "$dest_file"
ln -s "$orig_file" "$dest_file"
echo "$dest_file -> $orig_file"
}
is_chroot() {
! cmp -s /proc/1/mountinfo /proc/self/mountinfo
}
systemctl_enable_start() {
echo "systemctl --user enable --now "$1""
systemctl --user enable --now "$1"
}
echo "==========================="
echo "Setting up user dotfiles..."
echo "==========================="
link ".gnupg/$(cut -d'-' -f1 /etc/hostname)-gpg.conf" ".gnupg/gpg.conf"
link ".gnupg/gpg-agent.conf"
link ".ignore"
link ".magic"
link ".p10k.zsh"
link ".p10k.zsh" ".p10k-ascii-8color.zsh"
link ".zprofile"
link ".zsh-aliases"
link ".zshenv"
link ".zshrc"
link ".config/bat"
link ".config/chromium-flags.conf"
link ".config/environment.d"
link ".config/flashfocus"
link ".config/git/$(cut -d'-' -f1 /etc/hostname)" ".config/git/config"
link ".config/git/common"
link ".config/git/home"
link ".config/git/ignore"
link ".config/git/work"
link ".config/gtk-3.0"
link ".config/htop"
link ".config/imapnotify/archlinux.conf"
link ".config/imapnotify/maximbaz.conf"
link ".config/kak"
link ".config/kak-lsp"
link ".config/kitty"
link ".config/mimeapps.list"
link ".config/mpv"
link ".config/neomutt/colors"
link ".config/neomutt/mailcap"
link ".config/neomutt/neomuttrc"
link ".config/neomutt/signature"
link ".config/notmuch"
link ".config/pacman"
link ".config/pgcli/config"
link ".config/pylint"
link ".config/qalculate/qalc.cfg"
link ".config/qalculate/qalculate-gtk.cfg"
link ".config/qutebrowser"
link ".config/repoctl"
link ".config/sclirc"
link ".config/stylua"
link ".config/swappy"
link ".config/sway"
link ".config/swaylock"
link ".config/swaync"
link ".config/systemd/user/backup-packages.service"
link ".config/systemd/user/backup-packages.timer"
link ".config/systemd/user/battery-low-notify.service"
link ".config/systemd/user/mbsync.service"
link ".config/systemd/user/mbsync.timer"
link ".config/systemd/user/polkit-gnome.service"
link ".config/systemd/user/qutebrowser-update-useragent.service"
link ".config/systemd/user/qutebrowser-update-useragent.timer"
link ".config/systemd/user/sway-autoname-workspaces.service"
link ".config/systemd/user/sway-inactive-window-transparency.service"
link ".config/systemd/user/sway-session.target"
link ".config/systemd/user/swayr.service"
link ".config/systemd/user/systembus-notify.service"
link ".config/systemd/user/udiskie.service"
link ".config/systemd/user/waybar.service"
link ".config/systemd/user/waybar-updates.service"
link ".config/systemd/user/waybar-updates.timer"
link ".config/systemd/user/wl-clipboard-manager.service"
link ".config/systemd/user/wlsunset.service"
link ".config/tig"
link ".config/transmission/settings.json"
link ".config/udiskie"
link ".config/USBGuard"
link ".config/user-tmpfiles.d"
link ".config/vimiv"
link ".config/waybar"
link ".config/wldash"
link ".config/xdg-desktop-portal-wlr"
link ".config/xkb"
link ".config/xplr"
link ".config/zathura"
link ".local/bin"
link ".local/share/applications"
link ".local/share/qutebrowser/greasemonkey"
if is_chroot; then
echo >&2 "=== Running in chroot, skipping user services..."
else
echo ""
echo "================================="
echo "Enabling and starting services..."
echo "================================="
systemctl --user daemon-reload
systemctl_enable_start "backup-packages.timer"
systemctl_enable_start "battery-low-notify.service"
systemctl_enable_start "flashfocus.service"
systemctl_enable_start "swaync.service"
systemctl_enable_start "polkit-gnome.service"
systemctl_enable_start "qutebrowser-update-useragent.timer"
systemctl_enable_start "sway-autoname-workspaces.service"
systemctl_enable_start "sway-inactive-window-transparency.service"
systemctl_enable_start "swayr.service"
systemctl_enable_start "systembus-notify.service"
systemctl_enable_start "systemd-tmpfiles-setup.service"
systemctl_enable_start "udiskie.service"
systemctl_enable_start "waybar.service"
systemctl_enable_start "waybar-updates.timer"
systemctl_enable_start "wl-clipboard-manager.service"
systemctl_enable_start "wlsunset.service"
systemctl_enable_start "wluma.service"
systemctl_enable_start "yubikey-touch-detector.socket"
if [[ $HOSTNAME == home-* ]]; then
if [ -d "$HOME/.mail" ]; then
mkdir -p "$HOME/.mail/"{archlinux,maximbaz}
systemctl_enable_start "mbsync.timer"
systemctl_enable_start "[email protected]"
systemctl_enable_start "[email protected]"
else
echo >&2 -e "
=== Mail is not configured, skipping...
=== Consult \$MBSYNC_CONFIG for initial setup, and then sync everything using:
=== while ! mbsync -c "\$MBSYNC_CONFIG" -a; do echo 'restarting...'; done
"
fi
fi
fi
echo ""
echo "======================================="
echo "Finishing various user configuration..."
echo "======================================="
echo "Configuring MIME types"
file --compile --magic-file "$HOME/.magic"
if ! gpg -k | grep "$MY_PGP_KEY_ID" > /dev/null; then
echo "Importing my public PGP key"
curl -s https://maximbaz.com/pgp_keys.asc | gpg --import
echo "5\ny\n" | gpg --command-fd 0 --no-tty --batch --edit-key "$MY_PGP_KEY_ID" trust
fi
find "$HOME/.gnupg" -type f -not -path "*#*" -exec chmod 600 {} \;
find "$HOME/.gnupg" -type d -exec chmod 700 {} \;
if is_chroot; then
echo >&2 "=== Running in chroot, skipping YubiKey configuration..."
else
if [ ! -s "$HOME/.config/Yubico/u2f_keys" ]; then
echo "Configuring YubiKey for passwordless sudo (touch it now)"
mkdir -p "$HOME/.config/Yubico"
pamu2fcfg -umaximbaz > "$HOME/.config/Yubico/u2f_keys"
fi
fi
if [ -d "$HOME/.password-store" ]; then
echo "Configuring automatic git push for pass"
echo -e "#!/bin/sh\n\npass git push" > "$HOME/.password-store/.git/hooks/post-commit"
chmod +x "$HOME/.password-store/.git/hooks/post-commit"
else
echo >&2 "=== Password store is not configured yet, skipping..."
fi
if is_chroot; then
echo >&2 "=== Running in chroot, skipping GTK file chooser dialog configuration..."
else
echo "Configuring GTK file chooser dialog"
gsettings set org.gtk.Settings.FileChooser sort-directories-first true
fi
echo "Ignoring further changes to often changing config"
git update-index --assume-unchanged ".config/transmission/settings.json"
echo "Configure repo-local git settings"
git config user.email "[email protected]"
git config user.signingkey "04D7A219B0ABE4C2B62A5E654A2B758631E1FD91"
git config commit.gpgsign true
git remote set-url origin "[email protected]:maximbaz/dotfiles.git"