a
This commit is contained in:
parent
a97224f4b3
commit
506c43762d
6 changed files with 11 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
||||||
[compose]
|
[compose]
|
||||||
editor=nvim
|
editor=nvim
|
||||||
|
|
||||||
|
[triggers]
|
||||||
|
new-email=exec notify-send "New email from %n" "%s"
|
||||||
|
|
||||||
[filters]
|
[filters]
|
||||||
subject,~^\[PATCH=awk -f /usr/share/aerc/filters/hldiff
|
subject,~^\[PATCH=awk -f /usr/share/aerc/filters/hldiff
|
||||||
text/html=/usr/share/aerc/filters/html
|
text/html=/usr/share/aerc/filters/html
|
||||||
|
|
|
@ -83,8 +83,8 @@ $noinherit = true
|
||||||
$ex = <C-x>
|
$ex = <C-x>
|
||||||
<C-k> = :prev-field<Enter>
|
<C-k> = :prev-field<Enter>
|
||||||
<C-j> = :next-field<Enter>
|
<C-j> = :next-field<Enter>
|
||||||
<C-p> = :prev-tab<Enter>
|
|
||||||
<C-n> = :next-tab<Enter>
|
<C-n> = :next-tab<Enter>
|
||||||
|
<C-p> = :prev-tab<Enter>
|
||||||
|
|
||||||
[compose::review]
|
[compose::review]
|
||||||
# Keybindings used when reviewing a message to be sent
|
# Keybindings used when reviewing a message to be sent
|
||||||
|
|
3
dot_config/rofi/config.rasi
Normal file
3
dot_config/rofi/config.rasi
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
configuration {
|
||||||
|
theme: "/usr/share/rofi/themes/Arc-Dark.rasi";
|
||||||
|
}
|
|
@ -18,6 +18,6 @@ password=$(printf '%s\n' "${password_files[@]}" | $HOME/.local/scripts/rofiwrap.
|
||||||
|
|
||||||
[[ -n $password ]] || exit
|
[[ -n $password ]] || exit
|
||||||
|
|
||||||
pass show -c1 "$password" 2>/dev/null
|
MSG=$(pass show -c1 "$password" 2>&1)
|
||||||
xclip -o -sel clip | wl-copy
|
notify-send "Password copied." "$MSG"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
source $HOME/.zshrc
|
source $HOME/.zshrc >/dev/null 2>/dev/null
|
||||||
exec rofi -font "Roboto Mono 11" $@
|
exec rofi -font "Roboto Mono 11" $@
|
||||||
|
|
|
@ -22,6 +22,7 @@ export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||||
# export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src"
|
# export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src"
|
||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
export MAILDIR=$HOME/Mail
|
export MAILDIR=$HOME/Mail
|
||||||
|
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||||
|
|
||||||
source_if_exists $HOME/.cargo/env
|
source_if_exists $HOME/.cargo/env
|
||||||
source_if_exists $HOME/.ghcup/env
|
source_if_exists $HOME/.ghcup/env
|
||||||
|
|
Loading…
Reference in a new issue