Replace keepassxc with bitwarden
This commit is contained in:
parent
8e3a05f25d
commit
3617b36304
4 changed files with 3 additions and 44 deletions
|
@ -31,7 +31,6 @@
|
|||
- import_tasks: tasks/autostart.yml
|
||||
- import_tasks: tasks/fonts.yml
|
||||
- import_tasks: tasks/security.yml
|
||||
- import_tasks: tasks/keepassxc.yml
|
||||
|
||||
- import_tasks: tasks/python.yml
|
||||
- import_tasks: tasks/vim.yml
|
||||
|
|
|
@ -44,7 +44,7 @@ bindsym $mod+F12 exec --no-startup-id redshift -O 3000
|
|||
# Applications
|
||||
bindsym $mod+l exec --no-startup-id betterlockscreen -l dimblur && sleep 1
|
||||
bindsym $mod+Shift+l exec --no-startup-id pranklock
|
||||
bindsym $mod+K exec --no-startup-id keepassxc
|
||||
bindsym $mod+K exec --no-startup-id bitwarden
|
||||
bindsym $mod+d exec --no-startup-id rofi -show drun -sidebar-mode
|
||||
bindsym $mod+Tab exec --no-startup-id rofi -show window
|
||||
bindsym $mod+c exec --no-startup-id rofi -show calc -modi calc -no-show-match -no-sort
|
||||
|
@ -134,7 +134,7 @@ exec /usr/lib/polkit-1/polkitd --no-debug
|
|||
exec picom --dbus --xrender-sync-fence
|
||||
exec tbg ~/Upload/bg/ -m 10 -c "betterlockscreen -u /_"
|
||||
exec ssh-agent -Da /tmp/ssh-agent-$USER.sock
|
||||
exec keepassxc
|
||||
exec bitwarden
|
||||
exec dunst
|
||||
exec xfce4-power-manager --no-daemon
|
||||
|
||||
|
|
|
@ -1,41 +0,0 @@
|
|||
- name: Install keepassxc
|
||||
aur:
|
||||
name: keepassxc
|
||||
become: true
|
||||
become_user: aur_builder
|
||||
|
||||
- name: Create KeepassXC config directory
|
||||
file:
|
||||
state: directory
|
||||
recurse: true
|
||||
path: "{{ home }}/.config/keepassxc"
|
||||
owner: "{{ user }}"
|
||||
mode: 0700
|
||||
|
||||
- name: Set KeepassXC configuration
|
||||
ini_file:
|
||||
path: "{{ home }}/.config/keepassxc/keepassxc.ini"
|
||||
mode: 0700
|
||||
owner: "{{ user }}"
|
||||
section: "{{ item.section }}"
|
||||
option: "{{ item.option }}"
|
||||
value: "{{ item.value }}"
|
||||
loop_control:
|
||||
label: "{{ item.section }}.{{ item.option }}={{ item.value }}"
|
||||
loop:
|
||||
- {section: Browser, option: Enabled, value: "true"}
|
||||
- {section: Browser, option: AlwaysAllowAccess, value: "true"}
|
||||
- {section: Browser, option: AlwaysAllowUpdate, value: "true"}
|
||||
- {section: General, option: AutoSaveAfterEveryChange, value: "true"}
|
||||
- {section: General, option: LastOpenedDatabases, value: "{{ home }}/Private/Keepass/Password Safe.kdbx"}
|
||||
- {section: General, option: LastActiveDatabase, value: "{{ home }}/Private/Keepass/Password Safe.kdbx"}
|
||||
- {section: General, option: SingleInstance, value: "true"}
|
||||
- {section: generator, option: Length, value: 100}
|
||||
- {section: GUI, option: AdvancedSettings, value: "true"}
|
||||
- {section: GUI, option: ShowTrayIcon, value: "true"}
|
||||
- {section: GUI, option: MinimizeToTray, value: "true"}
|
||||
- {section: GUI, option: MinimizeOnStartup, value: "true"}
|
||||
- {section: GUI, option: MinimizeOnClose, value: "true"}
|
||||
- {section: Http, option: Enabled, value: "false"}
|
||||
- {section: security, option: lockdatabasescreenlock, value: "true"}
|
||||
- {section: security, option: clearclipboardtimeout, value: 60}
|
|
@ -4,6 +4,7 @@
|
|||
become: true
|
||||
become_user: aur_builder
|
||||
loop:
|
||||
- bitwarden-bin
|
||||
- gnome-keyring
|
||||
- firejail
|
||||
- seahorse
|
||||
|
|
Loading…
Reference in a new issue