Created
August 28, 2023 18:43
-
-
Save memchr/a40f9fdb95f9e263fc7a3f6a784b3feb to your computer and use it in GitHub Desktop.
import_env
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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