Compare commits

...

8 Commits

4 changed files with 10 additions and 5 deletions

View File

@ -1,17 +1,22 @@
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
@ -48,6 +53,7 @@ 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

View File

@ -1,2 +1,3 @@
8870E499C64EEB7720EBA5A442F4FE90129BFAE3 8870E499C64EEB7720EBA5A442F4FE90129BFAE3
# End of file

View File

@ -126,6 +126,8 @@ 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
View File

@ -83,13 +83,9 @@ 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