diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-03 22:56:22 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-03 22:56:22 +0200 |
commit | f56e0823324bb7a3821dd9f554b211876f874e66 (patch) | |
tree | 9f664082b7256ffe4f39b0ed614ac53ff78b043f /dotfiles | |
parent | Change synaptics sensibility (diff) | |
download | nixos-config-f56e0823324bb7a3821dd9f554b211876f874e66.tar.gz nixos-config-f56e0823324bb7a3821dd9f554b211876f874e66.tar.bz2 nixos-config-f56e0823324bb7a3821dd9f554b211876f874e66.zip |
Add location in a per host approach
Diffstat (limited to '')
-rw-r--r-- | dotfiles/.xinitrc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dotfiles/.xinitrc b/dotfiles/.xinitrc index 2547276..a4a32a9 100644 --- a/dotfiles/.xinitrc +++ b/dotfiles/.xinitrc @@ -1,7 +1,6 @@ #!/bin/sh export LC_CTYPE="en_US.UTF-8" -export LOCATION="52.954784:-1.158109" export _JAVA_AWT_WM_NONREPARENTING=1 userresources=$HOME/.Xresources @@ -55,7 +54,7 @@ xrandr --auto sxhkd & clipmenud & unclutter & -redshift & +redshift -l $LOCATION & numlockx on systemctl --user start graphical-session.target @@ -64,7 +63,7 @@ dunst & dwmbar & -while :; do ssh-agent smart-wallpaper -d ~/Images/Wallpapers/Day -n ~/Images/Wallpapers/Night -r; done & +while :; do ssh-agent smart-wallpaper -d ~/Images/Wallpapers/Day -n ~/Images/Wallpapers/Night -l $LOCATION -r; done & exec dwm 2> /tmp/dwm.log |