-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodos_at_install.txt
61 lines (47 loc) · 1.66 KB
/
todos_at_install.txt
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
# Antergos:
# Add the following in /etc/modprobe.d/psmouse_serio2_setup.conf to avoid scrolling being disabled after sleep
options psmouse synaptics_intertouch=0
# Arch
## enable tap-to-click on x260
sudo vim /usr/local/bin/trackpoint_configuration.sh
#####
echo -n 1 > /sys/devices/platform/i8042/serio1/serio2/press_to_select
#####
sudo vim /etc/systemd/system/trackpoint_parameters.path
#####
[Unit]
Description=Watch for, and modify, Trackpoint attributes
[Path]
PathExists=/sys/devices/platform/i8042/serio1/serio2/press_to_select
[Install]
WantedBy=default.target
#####
sudo vim /etc/systemd/system/trackpoint_parameters.service
#####
[Unit]
Description=Set TrackPoint attributes
[Service]
ExecStart=/usr/local/bin/trackpoint_configuration.sh
#####
sudo systemctl enable trackpoint_parameters.path
sudo systemctl start trackpoint_parameters.path
# Watch Netflix
## install widevine
pacaur -S chromium-widevine
# grub theme
https://github.com/fghibellini/arch-silence
## copy theme folder into "/boot/grub/themes/arch-silence/theme.txt"
## 1. open the file "/etc/default/grub"
## 2. set the GRUB_THEME line to GRUB_THEME="/boot/grub/themes/arch-silence/theme.txt"
## 3. run `sudo grub-mkconfig -o /boot/grub/grub.cfg` to update the grub config file.
##
## not necessary but if in need run: sudo grub-install --boot-directory=/boot /dev/sda
##
# fingerprint x260
## https://wiki.archlinux.org/index.php/Fprint
## sudo vim /usr/share/polkit-1/rules.d/50-net.reactivated.fprint.device.enroll.rules
polkit.addRule(function (action, subject) {
if (action.id == "net.reactivated.fprint.device.enroll") {
return subject.user == "root" ? polkit.Result.YES : polkit.result.NO
}
})