summaryrefslogtreecommitdiff
path: root/nix/programs/zsh/zprofile
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-17 21:57:53 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-17 21:57:53 -0400
commite0f2eb724245e02cb247b644f0947261d8665318 (patch)
tree13f929df40059d37165cbe46be95a6404a1bbecb /nix/programs/zsh/zprofile
parentrefactor styles to new color scheme basis (diff)
downloaddotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.gz
dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.bz2
dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.zip
remove nix dir and move out all sub modules
Diffstat (limited to 'nix/programs/zsh/zprofile')
-rw-r--r--nix/programs/zsh/zprofile11
1 files changed, 0 insertions, 11 deletions
diff --git a/nix/programs/zsh/zprofile b/nix/programs/zsh/zprofile
deleted file mode 100644
index 4815b36..0000000
--- a/nix/programs/zsh/zprofile
+++ /dev/null
@@ -1,11 +0,0 @@
-# dont attempt to launch a graphical
-# env in tmux
-if [ -n "$TMUX" ]; then
- return
-fi
-
-# only launch hyprland on tty 1
-if [ -z "${WAYLAND_DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
- export XDG_CURRENT_DESKTOP=Hyprland
- exec dbus-run-session Hyprland
-fi