Compare commits
No commits in common. "f1b55c6be97b903bfc80f583ba24c1935d57470b" and "50bb7df89edae49c9129af3feb7fc25bf52b4062" have entirely different histories.
f1b55c6be9
...
50bb7df89e
@ -63,12 +63,6 @@ dotfiles:
|
|||||||
d_local_bin:
|
d_local_bin:
|
||||||
src: local/bin
|
src: local/bin
|
||||||
dst: ~/.local/bin
|
dst: ~/.local/bin
|
||||||
f_ssh_config:
|
|
||||||
src: ssh/config
|
|
||||||
dst: ~/.ssh/config
|
|
||||||
f_ssh-agent.service:
|
|
||||||
src: config/systemd/user/ssh-agent.service
|
|
||||||
dst: ~/.config/systemd/user/ssh-agent.service
|
|
||||||
profiles:
|
profiles:
|
||||||
everywhere:
|
everywhere:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
@ -96,7 +90,6 @@ profiles:
|
|||||||
- f_pam_environment
|
- f_pam_environment
|
||||||
- f_xdg_desktop_portal_wlr_config
|
- f_xdg_desktop_portal_wlr_config
|
||||||
- d_local_bin
|
- d_local_bin
|
||||||
- f_ssh-agent.service
|
|
||||||
knafeh:
|
knafeh:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- d_vim
|
- d_vim
|
||||||
@ -118,4 +111,3 @@ profiles:
|
|||||||
- f_xdg_desktop_portal_wlr_config
|
- f_xdg_desktop_portal_wlr_config
|
||||||
- f_geoclue-agent.service
|
- f_geoclue-agent.service
|
||||||
- d_local_bin
|
- d_local_bin
|
||||||
- f_ssh-agent.service
|
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
# From: https://wiki.archlinux.org/title/SSH_keys#SSH_agents
|
|
||||||
[Unit]
|
|
||||||
Description=SSH key agent
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
|
|
||||||
# DISPLAY required for ssh-askpass to work
|
|
||||||
Environment=DISPLAY=:0
|
|
||||||
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=default.target
|
|
@ -1 +0,0 @@
|
|||||||
AddKeysToAgent yes
|
|
@ -37,6 +37,7 @@ if [[ "$OSTYPE" =~ ^linux.*$ ]]; then
|
|||||||
# 2021-06-22: fix "Firefox is already running" message
|
# 2021-06-22: fix "Firefox is already running" message
|
||||||
# See: https://mastransky.wordpress.com/2020/03/16/wayland-x11-how-to-run-firefox-in-mixed-environment/
|
# See: https://mastransky.wordpress.com/2020/03/16/wayland-x11-how-to-run-firefox-in-mixed-environment/
|
||||||
export MOZ_DBUS_REMOTE=1
|
export MOZ_DBUS_REMOTE=1
|
||||||
|
export KITTY_ENABLE_WAYLAND=1
|
||||||
export QT_QPA_PLATFORM=wayland-egl
|
export QT_QPA_PLATFORM=wayland-egl
|
||||||
export CLUTTER_BACKEND=wayland
|
export CLUTTER_BACKEND=wayland
|
||||||
# 2020-02-10: https://github.com/swaywm/sway/wiki#issues-with-java-applications
|
# 2020-02-10: https://github.com/swaywm/sway/wiki#issues-with-java-applications
|
||||||
@ -48,6 +49,10 @@ fi
|
|||||||
{%@@ if profile == "balozi" @@%}
|
{%@@ if profile == "balozi" @@%}
|
||||||
# Enable asdf version manager zsh completions
|
# Enable asdf version manager zsh completions
|
||||||
. /opt/asdf-vm/asdf.sh
|
. /opt/asdf-vm/asdf.sh
|
||||||
|
# Enable setting JAVA_HOME, requires the asdf-java plugin installed for this
|
||||||
|
# user. Currently disabled because it adds a noticeable lag to the shell
|
||||||
|
# See: https://github.com/halcyon/asdf-java
|
||||||
|
#. ~/.asdf/plugins/java/set-java-home.zsh
|
||||||
{%@@ endif @@%}
|
{%@@ endif @@%}
|
||||||
|
|
||||||
alias ls='ls -F --color=auto'
|
alias ls='ls -F --color=auto'
|
||||||
@ -57,6 +62,7 @@ alias less='less -R' # preserves colors in GNU coreutils' `less`
|
|||||||
# see: https://github.com/jan-warchol/selenized/tree/master/other-apps/dircolors
|
# see: https://github.com/jan-warchol/selenized/tree/master/other-apps/dircolors
|
||||||
export LS_COLORS="$LS_COLORS:ow=1;7;34:st=30;44:su=30;41"
|
export LS_COLORS="$LS_COLORS:ow=1;7;34:st=30;44:su=30;41"
|
||||||
|
|
||||||
|
|
||||||
# Environment
|
# Environment
|
||||||
export PS1='[%n@%m: %~]$ '
|
export PS1='[%n@%m: %~]$ '
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
@ -97,8 +103,6 @@ export GPG_TTY=$(tty)
|
|||||||
# Refresh gpg-agent tty in case user switches into an X Session
|
# Refresh gpg-agent tty in case user switches into an X Session
|
||||||
gpg-connect-agent updatestartuptty /bye >/dev/null
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
||||||
|
|
||||||
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
|
||||||
|
|
||||||
# Speed up JVM start for short-lived Java programs
|
# Speed up JVM start for short-lived Java programs
|
||||||
# See: https://zeroturnaround.com/rebellabs/your-maven-build-is-slow-speed-it-up/
|
# See: https://zeroturnaround.com/rebellabs/your-maven-build-is-slow-speed-it-up/
|
||||||
export MAVEN_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
|
export MAVEN_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
|
||||||
|
Loading…
Reference in New Issue
Block a user