-
Notifications
You must be signed in to change notification settings - Fork 0
/
gnome_forge.yml
44 lines (36 loc) · 973 Bytes
/
gnome_forge.yml
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
---
- hosts: localhost
connection: local
become: true
tasks:
### INSTALL GNOME TWEAKS AND EXTENSIONS
- name: Extensions | install gnome tweaks
apt:
name:
- gnome-shell-extensions
- gnome-tweaks
- dbus-x11
- python3-pip
state: latest
- name: Extensions | install pip3 gext
pip:
name:
- gnome-extensions-cli
state: latest
extra_args: --break-system-packages
- name: Extensions | install {{ item }}
become_user: mattia
shell: "gext install {{ item }}"
with_items:
- forge@jmmaranan.com
- top-bar-organizer@julian.gse.jsts.xyz2
- Vitals@CoreCoding.com
- blur-my-shell@aunetx
- dash-animator@icedman.github.com
### SET PREFERENCES ###
- name: Preferences | set dark theme ##didn't work
become_user: mattia
dconf:
key: "/org/gnome/desktop/interface/color-scheme"
value: "'prefer-dark'"
### SET KEYBINDINGS ###