Fix mounting 1337 on FreeBSD. Adjust flatpak commands to use firefox-esr.

This commit is contained in:
Hyperling 2021-02-06 06:48:59 -06:00
parent 34d8684840
commit 638ee2a746
4 changed files with 32 additions and 8 deletions

View File

@ -16,5 +16,5 @@
cups_pattern: cupsd cups_pattern: cupsd
cups_browse: cups-browsed cups_browse: cups-browsed
cups_browse_pattern: cups-browsed cups_browse_pattern: cups-browsed
sshfs_leet_cmd: "sshfs ling@leet: /mnt/leet -o defaults.allow_othher,_netdev" sshfs_leet_cmd: "sshfs ling@leet: /mnt/leet -o defaults,allow_other,_netdev"
when: ansible_system == "FreeBSD" when: ansible_system == "FreeBSD"

View File

@ -0,0 +1,18 @@
---
# GNOME settings, extensions, and setup.
# Setup Favorites (Terminal, Files, Firefox, Thunderbird, LBRY, Discord, VS Code, Android Studio, Lutris, Steam)
# Make sure Gnome-Tweaks is installed
# Dash to Dock Extension
# Top Bar Settings (Battery Percentage, Clock Weekday+Seconds, Calendar Week Numbers)
# Never Prompt for Removal Media
# Dark theme?
#Pop-dark on Pop
#Adwaita-dark on everything else
# Window Titlebars (Titlebar Buttons Minimize)

View File

@ -32,7 +32,7 @@
warn: false warn: false
when: ansible_system == "Linux" when: ansible_system == "Linux"
# FreeBSD also has root cron job for this @reboot # FreeBSD has to do this via root cron job, fstab is unhappy
- name: General | Cron | Root | Create SSHFS Job - name: General | Cron | Root | Create SSHFS Job
cron: cron:
user: root user: root

View File

@ -1,6 +1,6 @@
--- ---
# Pre-reqs # Flatpak Pre-reqs
- name: Workstation | Linux | Flatpak | Install Flatpak - name: Workstation | Linux | Flatpak | Install Flatpak
package: package:
name: flatpak name: flatpak
@ -13,7 +13,7 @@
method: system method: system
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
# Hop into installs # Flatpak Installs
- name: Workstation | Linux | Flatpak | Install Discord - name: Workstation | Linux | Flatpak | Install Discord
flatpak: flatpak:
name: com.discordapp.Discord name: com.discordapp.Discord
@ -22,20 +22,26 @@
flatpak: flatpak:
name: org.shotcut.Shotcut name: org.shotcut.Shotcut
- name: Workstation | Linux | Flatpak | Install Firefox - name: Workstation | Linux | Flatpak | Do Not Use Firefox Flatpak
flatpak: flatpak:
name: org.mozilla.firefox name: org.mozilla.firefox
state: absent
- name: Workstation | Linux | Flatpak | Install Thunderbird - name: Workstation | Linux | Flatpak | Install Thunderbird
flatpak: flatpak:
name: org.mozilla.Thunderbird name: org.mozilla.Thunderbird
# Remove any applicable repo software # Repo Software
- name: Workstation | Linux | Flatpak | Remove Packages - name: Workstation | Linux | Flatpak | Install Firefox From Package Manager
package:
name:
- "{{ firefox_esr }}"
state: present
- name: Workstation | Linux | Flatpak | Remove Software From Package Manager
package: package:
name: name:
- "{{ firefox }}" - "{{ firefox }}"
- "{{ firefox_esr }}"
- "{{ thunderbird }}" - "{{ thunderbird }}"
- "{{ evolution }}" - "{{ evolution }}"
state: absent state: absent