Skip to content

Instantly share code, notes, and snippets.

@memchr
Created August 28, 2023 18:43
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save memchr/a40f9fdb95f9e263fc7a3f6a784b3feb to your computer and use it in GitHub Desktop.
Save memchr/a40f9fdb95f9e263fc7a3f6a784b3feb to your computer and use it in GitHub Desktop.
import_env
#!/usr/bin/env bash
set -e
[[ -n $HYPRLAND_DEBUG_CONF ]] && exit 0
USAGE="\
Import environment variables
Usgae: $0 <command>
Commands:
tmux import to tmux server
system import to systemd and dbus user session
help print this help
"
_envs=(
# display
WAYLAND_DISPLAY
DISPLAY
# xdg
USERNAME
XDG_BACKEND
XDG_CURRENT_DESKTOP
XDG_SESSION_TYPE
XDG_SESSION_ID
XDG_SESSION_CLASS
XDG_SESSION_DESKTOP
XDG_SEAT
XDG_VTNR
# hyprland
HYPRLAND_CMD
HYPRLAND_INSTANCE_SIGNATURE
# sway
SWAYSOCK
# misc
XCURSOR_SIZE
# toolkit
_JAVA_AWT_WM_NONREPARENTING
QT_QPA_PLATFORM
QT_WAYLAND_DISABLE_WINDOWDECORATION
GRIM_DEFAULT_DIR
# ssh
SSH_AUTH_SOCK
)
case "$1" in
system)
dbus-update-activation-environment --systemd "${_envs[@]}"
;;
tmux)
for v in "${_envs[@]}"; do
if [[ -n ${!v} ]]; then
tmux setenv -g "$v" "${!v}"
fi
done
;;
help)
echo -n "$USAGE"
exit 0
;;
*)
echo "operation reuqired"
echo "use \"$0 help\" to see usage help"
exit 1
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment