Fix names.
This commit is contained in:
parent
6ec1a89c98
commit
cd1cdef514
@ -52,7 +52,7 @@
|
|||||||
- include: tasks/linux/software/flatpaks.yml
|
- include: tasks/linux/software/flatpaks.yml
|
||||||
when: ansible_system == "Linux" and flatpak_distro
|
when: ansible_system == "Linux" and flatpak_distro
|
||||||
|
|
||||||
- name: Worktation | Linux | Packages | Not Implemented
|
- name: Workstation | Linux | Packages | Not Implemented
|
||||||
shell: echo "Not implemented yet. :("
|
shell: echo "Not implemented yet. :("
|
||||||
when: ansible_system == "Linux" and not flatpak_distro
|
when: ansible_system == "Linux" and not flatpak_distro
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# GNOME settings, extensions, and setup.
|
# GNOME settings, extensions, and setup.
|
||||||
|
|
||||||
# Make sure Gnome-Tweaks is installed
|
# Make sure Gnome-Tweaks is installed
|
||||||
- name: General | Account Management | GNOME | Install Settings Editors
|
- name: Workstation | Account Management | GNOME | Install Settings Editors
|
||||||
package:
|
package:
|
||||||
name:
|
name:
|
||||||
- "{{ gnome_tweaks }}"
|
- "{{ gnome_tweaks }}"
|
||||||
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
# Setup Favorites Bar (Terminal, Files, Firefox, Thunderbird, LBRY, Discord, VS Code, Android Studio, Lutris, Steam)
|
# Setup Favorites Bar (Terminal, Files, Firefox, Thunderbird, LBRY, Discord, VS Code, Android Studio, Lutris, Steam)
|
||||||
- name: General | Account Management | GNOME | Favorites (Linux)
|
- name: Workstation | Account Management | GNOME | Favorites (Linux)
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/favorite-apps
|
key: /org/gnome/shell/favorite-apps
|
||||||
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'io.lbry.lbry-app.desktop', 'com.discordapp.Discord.desktop', 'code.desktop', 'com.google.AndroidStudio.desktop', 'net.lutris.Lutris.desktop', 'steam.desktop']"
|
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'io.lbry.lbry-app.desktop', 'com.discordapp.Discord.desktop', 'code.desktop', 'com.google.AndroidStudio.desktop', 'net.lutris.Lutris.desktop', 'steam.desktop']"
|
||||||
@ -23,7 +23,7 @@
|
|||||||
become_user: ling
|
become_user: ling
|
||||||
when: ansible_system == "Linux"
|
when: ansible_system == "Linux"
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Favorites (FreeBSD)
|
- name: Workstation | Account Management | GNOME | Favorites (FreeBSD)
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/favorite-apps
|
key: /org/gnome/shell/favorite-apps
|
||||||
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'code.desktop']"
|
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'code.desktop']"
|
||||||
@ -33,42 +33,42 @@
|
|||||||
|
|
||||||
|
|
||||||
# Top Bar Settings (Battery Percentage, Clock Weekday+Seconds, Calendar Week Numbers)
|
# Top Bar Settings (Battery Percentage, Clock Weekday+Seconds, Calendar Week Numbers)
|
||||||
- name: General | Account Management | GNOME | Interface - Show Date
|
- name: Workstation | Account Management | GNOME | Interface - Show Date
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-date
|
key: /org/gnome/desktop/interface/clock-show-date
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Interface - 24h Format
|
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-format
|
key: /org/gnome/desktop/interface/clock-format
|
||||||
value: "'24h'"
|
value: "'24h'"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Interface - Show Seconds
|
- name: Workstation | Account Management | GNOME | Interface - Show Seconds
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-seconds
|
key: /org/gnome/desktop/interface/clock-show-seconds
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Interface - Show Weekday
|
- name: Workstation | Account Management | GNOME | Interface - Show Weekday
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-weekday
|
key: /org/gnome/desktop/interface/clock-show-weekday
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Interface - 24h Format
|
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/show-battery-percentage
|
key: /org/gnome/desktop/interface/show-battery-percentage
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Interface - Show Week Date
|
- name: Workstation | Account Management | GNOME | Interface - Show Week Date
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/calendar/show-weekdate
|
key: /org/gnome/desktop/calendar/show-weekdate
|
||||||
value: "true"
|
value: "true"
|
||||||
@ -87,7 +87,7 @@
|
|||||||
|
|
||||||
|
|
||||||
# Window Titlebars (Titlebar Buttons Minimize)
|
# Window Titlebars (Titlebar Buttons Minimize)
|
||||||
- name: General | Account Management | GNOME | Window Buttons
|
- name: Workstation | Account Management | GNOME | Window Buttons
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/wm/preferences/button-layout
|
key: /org/gnome/desktop/wm/preferences/button-layout
|
||||||
value: "'appmenu:minimize,close'"
|
value: "'appmenu:minimize,close'"
|
||||||
@ -95,15 +95,15 @@
|
|||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
|
|
||||||
# Security- name: General | Account Management | GNOME | Window Buttons
|
# Security
|
||||||
- name: General | Account Management | GNOME | Privacy - Camera
|
- name: Workstation | Account Management | GNOME | Privacy - Camera
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/privacy/disable-camera
|
key: /org/gnome/desktop/privacy/disable-camera
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: ling
|
become_user: ling
|
||||||
|
|
||||||
- name: General | Account Management | GNOME | Privacy - Microphone
|
- name: Workstation | Account Management | GNOME | Privacy - Microphone
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/privacy/disable-microphone
|
key: /org/gnome/desktop/privacy/disable-microphone
|
||||||
value: "true"
|
value: "true"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user