-
Notifications
You must be signed in to change notification settings - Fork 8
/
07_gnome.yaml
91 lines (75 loc) · 2.33 KB
/
07_gnome.yaml
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
{{- $architecture := or .architecture "arm64" -}}
{{- $prevtargz := or .prevtargz "05_finalsetup.tar.gz" }}
{{- $targz := or .targz "06_gnome.tar.gz" }}
architecture: {{ $architecture }}
actions:
- action: unpack
file: {{ $prevtargz }}
- action: apt
recommends: false
description: Install gnome and related packages
packages:
- gnome
- gnome-software
- gnome-shell-extension-prefs
- lightdm
- portfolio-filemanager
- vlc
- action: apt
recommends: false
description: Install firefox
packages:
- firefox-esr
- foliate
- epiphany-browser
- syncthing
- gnome-shell-extension-maximized-by-default
# - action: run
# description: Fix mesa rockchip_ebc
# chroot: true
# command: ln -s /usr/lib/aarch64-linux-gnu/dri/rockchip_ebc_dri.so /usr/lib/aarch64-linux-gnu/dri/rockchip-ebc_dri.so
- action: overlay
description: Configuration for gdm3, auto-login
source: overlays/gdm3_config/
destination: /etc/gdm3/
- action: overlay
description: Configuration for GNOME
source: overlays/gnome_config/
destination: /etc/dconf/db/local.d/
- action: overlay
description: Background for each user
source: overlays/skel/
destination: /etc/skel/
- action: overlay
description: Configuration for GNOME, nr. 2
source: overlays/dconf_profile_user
destination: /etc/dconf/profile/
- action: run
description: dconf update
chroot: true
command: dconf update
- action: overlay
description: Default applications for GNOME
source: overlays/gnome_default_applications
destination: /usr/share/gnome/applications/
- action: overlay
description: Install environment file
source: overlays/environment.d
destination: /etc/environment.d
- action: apt
recommends: false
description: Install pnhelper gnome extension from repository
packages:
- pinenote-gnome-extension
- action: apt
recommends: false
description: Install PNEink Gnome theme
packages:
- pneink
# https://gitlab.freedesktop.org/mesa/mesa/-/issues/11892
- action: run
description: Add GDK_GL_DISABLE=base-instance to /etc/profile.d/pinenote.sh
chroot: true
command: echo "export GDK_GL_DISABLE=base-instance" > /etc/profile.d/pinenote.sh
- action: pack
file: {{ $targz }}