-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTo do
84 lines (60 loc) · 1.27 KB
/
To do
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
For Bookworm / rpi3 A+
/boot/firmware/config.txt
arm_freq=1450
over_voltage=6
temp_limit=80
temp_soft_limit=70
avoid_pwm_pll=1
core_freq=450
v3d_freq=400
sdram_freq=550
sdram_schmoo=0x02000020
sdram_over_voltage=6
#gpu_freq=500
#gpu_mem=256
/etc/X11/xorg.conf.d
Section "OutputClass"
Identifier "vc4"
MatchDriver "vc4"
Driver "modesetting"
Option "PrimaryGPU" "true"
EndSection
sudo nano .xprofile
xhost +SI:localuser:zeroshin
/etc/xdg/lxsession/LXDE-pi/autostart
@xrandr --output HDMI-1 --rotate right
/etc/X11/xinit/xinitrc
xrandr --output HDMI-1 --rotate right
Chromium flags
--kiosk
--noerrdialogs
--disable-infobars
--enable-features=WebUIDarkMode
--force-dark-mode
--no-memcheck
FULLPAGEOS
sudo nano /scripts/start_gui
#!/bin/bash
xset s off &
xset -dpms &
xset s noblank &
unclutter -idle 0.1 -grab -root &
while:
do
xrandr --auto
chromium \
--no-first-run \
--start-maximized \
--noerrdialogs \
--enable-features=WebUIDarkMode \
--force-dark-mode \
--disable-infobars \
--disable \
--disable-translate \
--disable-infobars \
--disable-suggestions-service \
--disable-save-password-bubble \
--disable-session-crashed-bubble \
--kiosk "http://homeassistant.local:8123/dashboard-calendrier/0"
sleep 5
done &