add keychain and idle_inhibitor

This commit is contained in:
Johannes Loher 2020-09-19 00:47:47 +02:00
parent c4598c70cd
commit 8a0ebd51da
4 changed files with 24 additions and 8 deletions

View file

@ -24,6 +24,7 @@
"battery", "battery",
"custom/left-arrow-light", "custom/left-arrow-light",
"custom/left-arrow-dark", "custom/left-arrow-dark",
"idle_inhibitor",
"tray" "tray"
], ],
@ -55,6 +56,14 @@
"tooltip": false "tooltip": false
}, },
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
"disk": { "disk": {
"interval": 30, "interval": 30,
"format": "{free} ", "format": "{free} ",

View file

@ -11,6 +11,17 @@ window#waybar {
color: #D3DAE3; color: #D3DAE3;
} }
#custom-right-arrow-dark,
#custom-left-arrow-dark {
color: #2F343F;
}
#custom-right-arrow-light,
#custom-left-arrow-light {
color: #383C4A;
background: #2F343F;
}
#clock, #clock,
#disk, #disk,
#pulseaudio, #pulseaudio,
@ -27,14 +38,8 @@ window#waybar {
background: #2F343F; background: #2F343F;
} }
#custom-right-arrow-dark, #idle_inhibitor {
#custom-left-arrow-dark { padding-left: 10px;
color: #2F343F;
}
#custom-right-arrow-light,
#custom-left-arrow-light {
color: #383C4A;
background: #2F343F; background: #2F343F;
} }

1
.ssh/config Normal file
View file

@ -0,0 +1 @@
AddKeysToAgent yes

View file

@ -39,6 +39,7 @@ then
. /usr/share/fzf/completion.zsh . /usr/share/fzf/completion.zsh
fi fi
eval `keychain --quiet --agents ssh --eval`
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman" export SDKMAN_DIR="$HOME/.sdkman"