-
Notifications
You must be signed in to change notification settings - Fork 95
/
SETUP
83 lines (57 loc) · 1.39 KB
/
SETUP
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
Autologin
=========
vim /etc/systemd/system/getty.target.wants/getty\@tty1.service
- ExecStart=-/sbin/agetty --autologin ingo --noclear %I $TERM
Pacman
======
Enable »Color« in /etc/pacman.conf.
NetworkManager
==============
sudo vim /etc/systemd/system/multi-user.target.wants/NetworkManager.service
- Type=simple
UDEV
====
sudo vim /etc/udev/rules.d/50-firmware.rules
- ACTION!="remove",SUBSYSTEM=="firmware",ATTR{loading}="-1"
GRUB2
=====
sudo vim /etc/default/grub
sudo update-grub
GRUB_CMDLINE_LINUX_DEFAULT
- quiet nosplash
- loglevel=3 systemd.log_level=err systemd.show_status=false
- nox2apic
GRUB_HIDDEN_TIMEOUT=1
MKINITCPIO
==========
COMPRESSION="cat"
https://wiki.archlinux.org/index.php/Silent_boot
THUNDERBIRD
===========
Plugins: "Disable reply-list", "Seturgent", "Lightning", "No Message Pane Sort by Mouse"
SYSTEMD
=======
Mask:
- exim4.service
- ModemManager.service
- nfs-common.service
- rpcbind.service
- rpcbind.target
- network-online.target
- binfmt-support.service
## Suspend
1. Create /etc/systemd/system/[email protected] with below content.
2. sudo systemctl enable [email protected]
---------------------------------------
[Unit]
Description=Suspend
Before=sleep.target
[Service]
User=%I
Type=simple
Environment=DISPLAY=:0
ExecStart=/home/ingo/.i3/i3exit lock
ExecStartPost=/usr/bin/sleep 1
[Install]
WantedBy=sleep.target
---------------------------------------