mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-05 17:24:22 +00:00
Add KeePassXC
This commit is contained in:
@@ -160,6 +160,12 @@ exec --no-startup-id redshift-gtk
|
|||||||
# Switch display output
|
# Switch display output
|
||||||
exec --no-startup-id $HOME/bin/switch_monitors.sh
|
exec --no-startup-id $HOME/bin/switch_monitors.sh
|
||||||
|
|
||||||
|
# KeePassXC
|
||||||
|
exec --no-startup-id $HOME/bin/start_keepassxc.sh
|
||||||
|
|
||||||
|
# Mate-power-manager
|
||||||
|
exec --no-startup-id mate-power-manager
|
||||||
|
|
||||||
# Launch Nemo
|
# Launch Nemo
|
||||||
bindsym $mod+n exec nemo
|
bindsym $mod+n exec nemo
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ font-2 = Weather Icons:size=10;1
|
|||||||
|
|
||||||
modules-left = i3
|
modules-left = i3
|
||||||
modules-center = datetime openweathermap
|
modules-center = datetime openweathermap
|
||||||
modules-right = system-usb-udev updates pulseaudio-tail wlan eth xkeyboard battery powermenu
|
modules-right = system-usb-udev updates pulseaudio-tail wlan eth xkeyboard battery powermenu
|
||||||
|
|
||||||
tray-detached = false
|
tray-detached = false
|
||||||
tray-position = left
|
tray-position = left
|
||||||
|
|||||||
@@ -4,6 +4,10 @@ echo "Enter OpenWeatherMap API key"
|
|||||||
read line
|
read line
|
||||||
echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key
|
echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key
|
||||||
|
|
||||||
|
echo "Enter KeePassXC master password"
|
||||||
|
read line
|
||||||
|
echo $line | secret-tool store --label='KeePassXC master password' keepassxc master
|
||||||
|
|
||||||
echo "Enter git name"
|
echo "Enter git name"
|
||||||
read name
|
read name
|
||||||
git config --global user.name $name
|
git config --global user.name $name
|
||||||
|
|||||||
3
bin/start_keepassxc.sh
Executable file
3
bin/start_keepassxc.sh
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
secret-tool lookup keepassxc master | keepassxc --pw-stdin ~/Documents/Important/passwords.kdbx
|
||||||
Reference in New Issue
Block a user