summaryrefslogtreecommitdiff
path: root/programs/zsh/zprofile
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-23 22:33:44 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-23 22:33:44 -0400
commit328c741b1aac74020412e99e0dca7c728dbc92fa (patch)
tree461f4ebcd3252d542749a34668defd62de356c73 /programs/zsh/zprofile
parentremoved unused packages (diff)
downloaddotfiles-nix-328c741b1aac74020412e99e0dca7c728dbc92fa.tar.gz
dotfiles-nix-328c741b1aac74020412e99e0dca7c728dbc92fa.tar.bz2
dotfiles-nix-328c741b1aac74020412e99e0dca7c728dbc92fa.zip
refactor
Diffstat (limited to 'programs/zsh/zprofile')
-rw-r--r--programs/zsh/zprofile11
1 files changed, 0 insertions, 11 deletions
diff --git a/programs/zsh/zprofile b/programs/zsh/zprofile
deleted file mode 100644
index 4815b36..0000000
--- a/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