diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-16 12:01:01 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-16 12:02:00 +0000 |
commit | 63fee6b75ff7c508ef959cb6515f733c29f3d837 (patch) | |
tree | 73bfac3ae70485fa27dfd638b75df97e93ac6e0a /.xinitrc | |
parent | 2e5aa362b54d0a4865b58a9fbf8834a870b4ba0e (diff) | |
download | dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.gz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.bz2 dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.lz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.xz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.zst dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.zip |
Update MANPAGER to use nvim and update dwm
Diffstat (limited to '')
-rw-r--r-- | .xinitrc | 32 |
1 files changed, 20 insertions, 12 deletions
@@ -1,31 +1,37 @@ #!/usr/bin/env sh # vi: ft=sh +eval $(dbus-launch --sh-syntax) + picom --vsync --no-fading-openclose --shadow-opacity=1.0 --dbus --daemon -feh --auto-reload --bg-fill $HOME/Pictures/wall.png & +feh --auto-reload --bg-fill "$HOME/Pictures/wall.png" & dunst & /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & nm-applet & blueman-applet & thunar --daemon & -#pipewire & -#pipewire-pulse & +pipewire & +pipewire-pulse & +wireplumber & +xss-lock xsecurelock & # Set up touchpad controls # Libinput -TID=$(xinput | sed -n 's/.*Touchpad.*id=\([0-9]*\).*/\1/p') -#xinput --set-prop $TID 'libinput Accel Speed' 0.5 -xinput --set-prop $TID 'libinput Tapping Enabled' 1 & -xinput --set-prop $TID 'libinput Natural Scrolling Enabled' 1 & +# TID=$(xinput | sed -n 's/.*Touchpad.*id=\([0-9]*\).*/\1/p') +# #xinput --set-prop $TID 'libinput Accel Speed' 0.5 +# xinput --set-prop $TID 'libinput Tapping Enabled' 1 & +# xinput --set-prop $TID 'libinput Natural Scrolling Enabled' 1 & # Synapse -#TID=`xinput list | grep "SynPS/2 Synaptics TouchPad" | sed 's/.*id=\([0-9]*\).*/\1/g'` -#PROP_NO=`xinput list-props ${TID} | grep "Synaptics Scrolling Distance" | sed 's/.*(\([0-9]*\)).*/\1/g'` -#xinput --set-prop $TID 'Synaptics Tap Action' 1 -#xinput set-prop ${TID} ${PROP_NO} -106 -106 +TID=`xinput list | grep "SynPS/2 Synaptics TouchPad" | sed 's/.*id=\([0-9]*\).*/\1/g'` +PROP_NO=`xinput list-props ${TID} | grep "Synaptics Scrolling Distance" | sed 's/.*(\([0-9]*\)).*/\1/g'` +xinput --set-prop $TID 'Synaptics Tap Action' 1 +xinput set-prop ${TID} ${PROP_NO} -106 -106 + +setxkbmap no #bspc monitor -d I II III IV V VI VII VIII IX X xrandr --output eDP1 --primary --auto @@ -33,5 +39,7 @@ xrandr --output HDMI1 --same-as eDP1 --auto xrdb -merge .config/xresources -exec i3 +# exec i3 +./dotfiles/dwm/.dwm/bar/bar.sh & +exec dwm |