Compare commits
No commits in common. "390bb76203b5ddba05da42ab8caa596c4206eaec" and "5558b5c9633991f055c48f76cb17b684a12104d3" have entirely different histories.
390bb76203
...
5558b5c963
|
@ -1,22 +1,17 @@
|
||||||
arc-gtk-theme
|
arc-gtk-theme
|
||||||
arc-icon-theme
|
arc-icon-theme
|
||||||
bind
|
|
||||||
docker
|
docker
|
||||||
dkms
|
dkms
|
||||||
dunst
|
dunst
|
||||||
evince
|
|
||||||
feh
|
feh
|
||||||
firefox
|
firefox
|
||||||
flameshot
|
flameshot
|
||||||
fzf
|
fzf
|
||||||
gthumb
|
|
||||||
htop
|
htop
|
||||||
i3-wm
|
i3-wm
|
||||||
i3lock-color
|
i3lock-color
|
||||||
imagemagick
|
|
||||||
jq
|
jq
|
||||||
kwayland5
|
kwayland5
|
||||||
libreoffice-fresh
|
|
||||||
libusb-compat
|
libusb-compat
|
||||||
less
|
less
|
||||||
maim
|
maim
|
||||||
|
@ -53,7 +48,6 @@ signal-desktop
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
terminator
|
terminator
|
||||||
thunderbird
|
thunderbird
|
||||||
torbrowser-launcher
|
|
||||||
trash-cli
|
trash-cli
|
||||||
ttf-dejavu
|
ttf-dejavu
|
||||||
ttf-font-awesome
|
ttf-font-awesome
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
8870E499C64EEB7720EBA5A442F4FE90129BFAE3
|
8870E499C64EEB7720EBA5A442F4FE90129BFAE3
|
||||||
|
|
||||||
# End of file
|
|
||||||
|
|
|
@ -126,8 +126,6 @@ if [ ! -z "$INIT" ]; then
|
||||||
mkdir -p ~/documents ~/images/screenshots ~/videos ~/downloads
|
mkdir -p ~/documents ~/images/screenshots ~/videos ~/downloads
|
||||||
echo -e "* Allow user to control brightness..."
|
echo -e "* Allow user to control brightness..."
|
||||||
sudo usermod $(whoami) -aG video
|
sudo usermod $(whoami) -aG video
|
||||||
echo -e "* Install host app for PassFF Firefox extension..."
|
|
||||||
curl -sSL github.com/passff/passff-host/releases/latest/download/install_host_app.sh | bash -s -- firefox
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z ${ENV} ]; then
|
if [ ! -z ${ENV} ]; then
|
||||||
|
|
6
.zshrc
6
.zshrc
|
@ -83,9 +83,13 @@ unset SSH_AGENT_PID
|
||||||
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
||||||
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
||||||
fi
|
fi
|
||||||
export GPG_TTY="$(tty)"
|
export GPG_TTY=$(tty)
|
||||||
gpg-connect-agent updatestartuptty /bye >/dev/null
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
||||||
|
|
||||||
|
export KEYGRIP=8870E499C64EEB7720EBA5A442F4FE90129BFAE3
|
||||||
|
# Sometimes gpg has a bug and needs to re-import key
|
||||||
|
alias gbye='gpg-connect-agent "delete_key $KEYGRIP" /bye'
|
||||||
|
|
||||||
if [ -f ~/.aliases ]; then
|
if [ -f ~/.aliases ]; then
|
||||||
. ~/.aliases
|
. ~/.aliases
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue