aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-08-02 15:07:57 +0200
committersrdusr <trevorgray@srdusr.com>2023-08-02 15:07:57 +0200
commit99038104f89585074b1fd2c3cc02748dde0678f2 (patch)
tree2b4834376ac67af15d8b0745de99692e59c1775d /.config
parenta494198dbbdb29c9806e8d0922c8a824cede9b94 (diff)
downloaddotfiles-99038104f89585074b1fd2c3cc02748dde0678f2.tar.gz
dotfiles-99038104f89585074b1fd2c3cc02748dde0678f2.zip
Fixed syntax error for display-server
Diffstat (limited to '.config')
-rw-r--r--.config/zsh/.zshenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/zsh/.zshenv b/.config/zsh/.zshenv
index 4539de5..f2fe4ce 100644
--- a/.config/zsh/.zshenv
+++ b/.config/zsh/.zshenv
@@ -17,7 +17,7 @@ display_server_found=0
# Conditionally set Display server
available_displays=("wayland" "x11")
for display in "${available_displays[@]}"; do
- if [ "$WAYLAND_DISPLAY" == "$display" ]; then
+ if [ "$WAYLAND_DISPLAY" = "$display" ]; then
export XDG_SESSION_TYPE="$display"
display_server_found=1
break