summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.config/alacritty/alacritty.yml6
-rw-r--r--.config/fish/config.fish10
-rw-r--r--.neomuttrc2
-rw-r--r--.ssh/config7
-rw-r--r--.xinitrc5
-rwxr-xr-xbin/gk2
6 files changed, 10 insertions, 22 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 17821b7..eb1063f 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -31,6 +31,7 @@ window:
 
   # Spread additional padding evenly around the terminal content.
   dynamic_padding: false
+  dynamic_title: true
 
   # Window decorations
   #
@@ -109,7 +110,7 @@ font:
     style: Italic
 
   # Point size
-  size: 6.0
+  size: 9.5
 
   # Offset is the extra space around each character. `offset.y` can be thought of
   # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@@ -195,7 +196,7 @@ colors:
 #   - Linear
 #
 # Specifying a `duration` of `0` will disable the visual bell.
-visual_bell:
+bell:
   animation: EaseOutExpo
   duration: 0
   color: '0xffffff'
@@ -257,7 +258,6 @@ selection:
   # clipboard.
   save_to_clipboard: false
 
-dynamic_title: true
 
 cursor:
   # Cursor style
diff --git a/.config/fish/config.fish b/.config/fish/config.fish
index 0dcb720..80c5ddc 100644
--- a/.config/fish/config.fish
+++ b/.config/fish/config.fish
@@ -11,20 +11,20 @@ gpg-connect-agent updatestartuptty /bye > /dev/null
 
 ulimit -n 8096
 
+function ls
+  command /usr/bin/ls --color=auto $argv
+end
 function less
   command ~/.cargo/bin/bat -p $argv
 end
 function more
   command ~/.cargo/bin/bat -p $argv
 end
-function ls
-  command lsd $argv
-end
 function pip
   command /usr/bin/pip3 $argv
 end
 function dotfiles
-  command /usr/bin/git --git-dir /home/ahriman/.dotfiles/ --work-tree /home/ahriman $argv
+  command /usr/bin/git --git-dir $HOME/.dotfiles/ --work-tree $HOME $argv
 end
 function pkgs
   command /usr/bin/apt search --names-only $argv
@@ -81,7 +81,7 @@ end
 # misc environment modifications
 set -x VISUAL vim
 set -x EDITOR $VISUAL
-set -x PAGER "/home/ahriman/.cargo/bin/bat -p"
+set -x PAGER "$HOME/.cargo/bin/bat -p"
 set -x BROWSER firefox
 set -x TERM xterm-256color
 set -x MANPATH /usr/local/man $MANPATH
diff --git a/.neomuttrc b/.neomuttrc
index d476a69..9d38b83 100644
--- a/.neomuttrc
+++ b/.neomuttrc
@@ -1,4 +1,4 @@
-source ~/.config/neomutt/dracula-theme/dracula.muttrc
+source ~/.config/mutt-dracula/dracula.muttrc
 
 set pgp_default_key	= "0x9cd12ff0"
 set pgp_use_gpg_agent	= yes
diff --git a/.ssh/config b/.ssh/config
index 05f710a..a966721 100644
--- a/.ssh/config
+++ b/.ssh/config
@@ -14,13 +14,6 @@ Host institute inst
     IdentityFile ~/.ssh/id_rsa_yubikey.pub
     RemoteForward /home/gbmor/.gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra
 
-Host ns
-    HostName ns.tilde.institute
-    User gbmor
-    IdentitiesOnly yes
-    IdentityFile ~/.ssh/id_rsa_yubikey.pub
-    RemoteForward /home/gbmor/.gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra
-
 Host crawl
     HostName crawl.tildeverse.org
 
diff --git a/.xinitrc b/.xinitrc
deleted file mode 100644
index 3297d3e..0000000
--- a/.xinitrc
+++ /dev/null
@@ -1,5 +0,0 @@
-sh /home/ahriman/.fehbg &
-exec /usr/bin/redshift -l 34:84 -t 5500:4000 &
-exec /usr/bin/xcompmgr &
-setxkbmap -option compose:ralt
-exec /usr/bin/i3
diff --git a/bin/gk b/bin/gk
index c801a45..a25edf8 100755
--- a/bin/gk
+++ b/bin/gk
@@ -1,5 +1,5 @@
 #!/bin/sh
-pkill gpg-agent
+pkill -9 gpg-agent
 
 export GPG_TTY=$(tty)
 export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)