Commit 5f1a185
Changed files (5)
files/firefox_user.js
@@ -7,7 +7,7 @@ user_pref("browser.newtabpage.activity-stream.showSearch", false);
// theme
user_pref("extensions.activeThemeID", "firefox-compact-dark@mozilla.org");
-user_pref("browser.toolbars.bookmarks.visibility", "never")e
+user_pref("browser.toolbars.bookmarks.visibility", "never");
// disable firefox saved passwords
user_pref("signon.rememberSignons", false);
files/ssh_config
@@ -3,3 +3,14 @@ Host tmc
User admin
AddKeysToAgent yes
ForwardAgent yes
+
+Host turn.alpha
+ Hostname turn.alpha.alta3.com
+ Port 42587
+ User ubuntu
+ ForwardAgent yes
+
+Host sumi-02.alpha
+ Hostname %h
+ User ubuntu
+ ProxyJump turn.alpha
ansible.cfg
@@ -3,3 +3,6 @@ localhost_warning=False
[inventory]
inventory_unparsed_warning=False
+
+[privilege_escalation]
+become_ask_pass=True
firefox.md
@@ -1,7 +1,16 @@
# firefox modifications
+- add bitwarden
+
+https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/
+firefox https://addons.mozilla.org/firefox/downloads/file/4246600/bitwarden_password_manager-2024.2.1.xpi
+
+## Done
+
+- disable home shortcuts
+- disable reccomended by pocket
+- disable recent activity
- theme: dark
-- website-colors: dark
-- https://support.mozilla.org/en-US/kb/disable-password-saving-firefox
+- disable password saving
- scroll: kenitic
-- add bitwarden
+- preserve layout
main.yml
@@ -74,6 +74,9 @@
- ".local"
- ".local/bin"
- ".gnupg"
+ - ".mozilla"
+ - ".mozilla/firefox"
+ - ".mozilla/firefox/{{ ansible_env.USER }}"
- "git"
- name: binary installs
@@ -119,7 +122,7 @@
executable: "/bin/bash"
chdir: "{{ ansible_env.HOME }}"
creates: "{{ ansible_env.HOME }}.nvm/versions/"
-
+
- name: git repos
git:
repo: "https://github.com/nvim-lua/kickstart.nvim"
@@ -154,6 +157,10 @@
dest: ".bashrc"
- src: "gitconfig"
dest: ".gitconfig"
+ - src: "firefox_profiles.ini"
+ dest: ".mozilla/firefox/profiles.ini"
+ - src: "firefox_user.js"
+ dest: ".mozilla/firefox/{{ ansible_env.USER }}/user.js"
# all bashrc_d files
- src: "bashrc_d"
dest: ".bashrc.d"