Compare commits
12 Commits
4b359afdd0
...
prod
| Author | SHA1 | Date | |
|---|---|---|---|
| 98cc0c08df | |||
| 27d66493e4 | |||
| 6056038b75 | |||
| 728c68443f | |||
| ddd5693145 | |||
| d6295f8ffe | |||
| 014b9ef105 | |||
| c8973bf074 | |||
| 9cc6be2325 | |||
| f6d9521865 | |||
| 3a53fbb0c6 | |||
| 8d74bee2ff |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,22 @@
|
||||
# title
|
||||
|
||||
NAME
|
||||
|
||||
# desc
|
||||
|
||||
CONTENT
|
||||
|
||||
---
|
||||
|
||||
Recorded and edited YYYY-MM-DD.
|
||||
Recorded YYYY-MM-DD, edited YYYY-MM-DD.
|
||||
|
||||
[blog.hyperling.com/TBD](https://blog.hyperling.com/TBD)
|
||||
|
||||
# tags
|
||||
|
||||
-
|
||||
,
|
||||
,
|
||||
,
|
||||
,
|
||||
@@ -171,6 +171,8 @@
|
||||
|
||||
- include_tasks: tasks/workstation/shared/settings/services.yml
|
||||
|
||||
- include_tasks: tasks/workstation/shared/settings/templates.yml
|
||||
|
||||
# Final Tasks (SLOW) #
|
||||
- include_tasks: tasks/workstation/linux/software/flutter.yml
|
||||
when: ansible_system == "Linux"
|
||||
|
||||
@@ -257,6 +257,15 @@
|
||||
dconf write /org/gnome/desktop/notifications/application/org-gnome-evolution/enable \
|
||||
false && inc_dconf &&
|
||||
|
||||
# Stop Update Notifications
|
||||
|
||||
dconf write /org/gnome/software/allow-updates \
|
||||
false && inc_dconf &&
|
||||
dconf write /org/gnome/software/download-updates \
|
||||
false && inc_dconf &&
|
||||
dconf write /org/gnome/software/download-updates-notify \
|
||||
false && inc_dconf &&
|
||||
|
||||
# Red Mode (Night Light)
|
||||
(
|
||||
typeset -l redmode
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
# Copy everything from PROJECT/files/templates/ to User's home.
|
||||
|
||||
- name: Workstation | Settings | Templates | Variables
|
||||
set_fact:
|
||||
user_templates: "{{ user_user.home }}/Templates"
|
||||
|
||||
- name: Workstation | Settings | Templates | Ensure Directory Exists
|
||||
ansible.builtin.file:
|
||||
path: "{{ user_templates }}"
|
||||
state: directory
|
||||
mode: '0755'
|
||||
owner: "{{ user }}"
|
||||
group: "{{ user }}"
|
||||
|
||||
- name: Workstation | Settings | Templates | Copy Files
|
||||
copy:
|
||||
src: 'templates/'
|
||||
dest: "{{ user_templates }}/"
|
||||
owner: "{{ user }}"
|
||||
group: "{{ user }}"
|
||||
mode: '0755'
|
||||
Reference in New Issue
Block a user