Compare commits

...

2 Commits

Author SHA1 Message Date
me e0395dda04 Add symlinks for the Mullvad GUI. 2026-07-26 18:15:20 -07:00
me 625f4c899f Remove Mullvad from PATH. 2026-07-26 18:10:29 -07:00
2 changed files with 12 additions and 4 deletions
-2
View File
@@ -126,7 +126,6 @@
set_fact: set_fact:
export_path_additions: export PATH="$HOME/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH" export_path_additions: export PATH="$HOME/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
export_path_sbin: export PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" export_path_sbin: export PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin"
export_path_mullvad: export PATH="$PATH:/opt/Mullvad\ VPN"
#export_terminal: export TERMINAL="alacritty" # colors look weird. #export_terminal: export TERMINAL="alacritty" # colors look weird.
export_terminal: export TERMINAL="kitty" export_terminal: export TERMINAL="kitty"
keyboard_settings: setxkbmap -layout us -variant altgr-intl keyboard_settings: setxkbmap -layout us -variant altgr-intl
@@ -1124,7 +1123,6 @@
profile_common: | profile_common: |
{{ export_path_additions }} {{ export_path_additions }}
{{ export_path_sbin }} {{ export_path_sbin }}
{{ export_path_mullvad }}
{{ export_terminal }} {{ export_terminal }}
{{ keyboard_settings}} {{ keyboard_settings}}
rc_common: | rc_common: |
+12 -2
View File
@@ -2,7 +2,7 @@
# Install VPN client(s). # Install VPN client(s).
# https://mullvad.net/en/help/install-mullvad-app-linux # https://mullvad.net/en/help/install-mullvad-app-linux
- name: Workstation | Software | VPN | Add Mullvad Repo [apt] - name: Workstation | Software | VPN | Mullvad | Add Repo [apt]
shell: "{{ item }}" shell: "{{ item }}"
loop: loop:
- sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc - sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc
@@ -10,7 +10,7 @@
- apt update - apt update
when: ansible_pkg_mgr == "apt" when: ansible_pkg_mgr == "apt"
- name: Workstation | Software | VPN | Add Mullvad Repo [dnf] - name: Workstation | Software | VPN | Mullvad | Add Repo [dnf]
shell: "{{ item }}" shell: "{{ item }}"
loop: loop:
- sudo dnf config-manager --add-repo https://repository.mullvad.net/rpm/stable/mullvad.repo - sudo dnf config-manager --add-repo https://repository.mullvad.net/rpm/stable/mullvad.repo
@@ -21,3 +21,13 @@
name: name:
- mullvad-vpn - mullvad-vpn
state: present state: present
- name: Workstation | Software | VPN | Mullvad | Symlink GUI
ansible.builtin.file:
src: "/opt/Mullvad VPN/mullvad-vpn"
dest: "{{ item }}"
state: link
force: true
loop:
- "{{ global_bin }}/mullvad-vpn"
- "{{ global_bin }}/mullvad-gui"