[tmux] Fix notes session directory
Fixed opening correct directory for tmux notes session, vim working window. Update xinit comments to be more reflective of programs intention. Remove wal autostart xresources setup, it has been replaced by styler (and at some point goxbam).
This commit is contained in:
parent
0d3b3a0c14
commit
64236ada0a
2 changed files with 9 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
||||||
rename-window notes
|
rename-window notes
|
||||||
send-keys vm Space $WIKIROOT Space $LIBRARY C-m
|
send-keys vm Space $WIKIROOT Space $LIBRARY C-m
|
||||||
new-window -n notepad
|
new-window -n notepad
|
||||||
send-keys $WIKIROOT C-m
|
send-keys cd Space $WIKIROOT C-m
|
||||||
send-keys v C-m
|
send-keys v C-m
|
||||||
send-keys Space w w
|
send-keys Space w w
|
||||||
attach-session -t . -c $WIKIROOT
|
attach-session -t . -c $WIKIROOT
|
||||||
|
|
|
@ -51,13 +51,13 @@ setxkbmap -option grp:alt_shift_toggle
|
||||||
# set a timeout of 500ms, if pressed longer it will ignore esc
|
# set a timeout of 500ms, if pressed longer it will ignore esc
|
||||||
type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape' -t 500
|
type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape' -t 500
|
||||||
|
|
||||||
# if unclutter exists start it
|
# unclutter is a program to hide your mouse cursor when it is not moved
|
||||||
type unclutter >/dev/null 2>&1 && unclutter &
|
type unclutter >/dev/null 2>&1 && unclutter &
|
||||||
# if picom exists then we can start it as our compositor
|
# picom is the maintained version of desktop compositor compton
|
||||||
type picom >/dev/null 2>&1 && picom &
|
type picom >/dev/null 2>&1 && picom &
|
||||||
# same deal with flashfocus as our active window indicator
|
# flashfocus 'flashes' windows as they gain focus
|
||||||
type flashfocus >/dev/null 2>&1 && flashfocus -l never &
|
type flashfocus >/dev/null 2>&1 && flashfocus -l never &
|
||||||
# if redshift is installed run it
|
# redshift removes blue light from display as it gets dark outside
|
||||||
type redshift >/dev/null 2>&1 && redshift &
|
type redshift >/dev/null 2>&1 && redshift &
|
||||||
|
|
||||||
# if sxhkd - the key-binding daemon is installed, start it up
|
# if sxhkd - the key-binding daemon is installed, start it up
|
||||||
|
@ -65,13 +65,13 @@ type sxhkd >/dev/null 2>&1 && sxhkd &
|
||||||
# if greenclip - a clipboard manager, integrated with rofi, is installed, start it up
|
# if greenclip - a clipboard manager, integrated with rofi, is installed, start it up
|
||||||
type greenclip >/dev/null 2>&1 && greenclip daemon &
|
type greenclip >/dev/null 2>&1 && greenclip daemon &
|
||||||
|
|
||||||
# if pywal is installed,
|
|
||||||
# -R restores the last colorscheme that was in use.
|
|
||||||
type wal >/dev/null 2>&1 && wal -R &
|
|
||||||
|
|
||||||
# if nextcloud-client exists, start it up
|
# if nextcloud-client exists, start it up
|
||||||
type nextcloud >/dev/null 2>&1 && nextcloud --background &
|
type nextcloud >/dev/null 2>&1 && nextcloud --background &
|
||||||
|
|
||||||
|
# load nm-applet, to allow easy vpn setting/switching from x interface
|
||||||
|
# TODO this should over time be replaced with a custom polybar interface
|
||||||
|
type nm-applet >/dev/null 2>&1 && nm-applet &
|
||||||
|
|
||||||
# additional config options for Touchpad devices ONLY
|
# additional config options for Touchpad devices ONLY
|
||||||
if [ "$(dmesg | grep -c "Touchpad")" -gt 0 ]; then
|
if [ "$(dmesg | grep -c "Touchpad")" -gt 0 ]; then
|
||||||
# enable touch tapping for XPS13 touchpad - for different devices get the touchpad name with xinput list-prop <TAB>
|
# enable touch tapping for XPS13 touchpad - for different devices get the touchpad name with xinput list-prop <TAB>
|
||||||
|
|
Loading…
Reference in a new issue