diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-10-09 00:04:06 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-10-09 00:04:06 -0600 |
commit | 0f89569ab3efc292f2a9c5d9f8f9c0c312a40045 (patch) | |
tree | d01ce54a00cc7ebce864762c7efa7dccd6d0f4ac | |
parent | 2a89745c73443f182223213f9503e020d414b2e6 (diff) | |
download | dotfiles-0f89569ab3efc292f2a9c5d9f8f9c0c312a40045.tar dotfiles-0f89569ab3efc292f2a9c5d9f8f9c0c312a40045.tar.gz dotfiles-0f89569ab3efc292f2a9c5d9f8f9c0c312a40045.tar.bz2 |
fixed link types
-rw-r--r--[l---------] | x/.Xresources | 3 | ||||
-rw-r--r--[l---------] | x/.xinitrc | 20 | ||||
-rw-r--r--[l---------] | x/.xinitrc-not-docked | 17 |
3 files changed, 37 insertions, 3 deletions
diff --git a/x/.Xresources b/x/.Xresources index 634a2d0..4597ef7 120000..100644 --- a/x/.Xresources +++ b/x/.Xresources @@ -1 +1,2 @@ -/home/bryson/.Xresources
\ No newline at end of file +Xcursor.theme: capitaine-cursors-light +Xcursor.size: 55 diff --git a/x/.xinitrc b/x/.xinitrc index 87cab44..81f583c 120000..100644 --- a/x/.xinitrc +++ b/x/.xinitrc @@ -1 +1,19 @@ -/home/bryson/.xinitrc
\ No newline at end of file +# executed by startx +# for use when dingo is DOCKED + +cd ~ & + +# set up monitors +fixscreen & + +# add weather, date and time to xsetroot +sh ~/bin/xsetloop-docked.sh & + +# set up wallpapers +wallpapers & + +# apply Xresources +xrdb -merge ~/.Xresources & + +# start dwm +redshift -O3500; xset r rate 300 50; exec dwm diff --git a/x/.xinitrc-not-docked b/x/.xinitrc-not-docked index 77ed719..f7ad927 120000..100644 --- a/x/.xinitrc-not-docked +++ b/x/.xinitrc-not-docked @@ -1 +1,16 @@ -/home/bryson/.xinitrc-not-docked
\ No newline at end of file +# executed by startx-not-docked +# for use when dingo is NOT docked + +cd ~ + +# add network, battery, date and time to xsetroot +sh ~/bin/xsetloop-not-docked.sh & + +# set up wallpaper +nitrogen --head=0 --set-zoom-fill ~/git/nordic-wallpapers/wallpapers/ign_unsplash7.png & + +# apply Xresources +xrdb -merge ~/.Xresources + +# start dwm +redshift -O3500; xset r rate 300 50; exec dwm |