96f5019a94
set the right envvar so that pinentry doesn't display ncurses to tty
27 lines
757 B
Bash
27 lines
757 B
Bash
#!/usr/bin/env sh
|
|
|
|
# This file is sourced when launching a DM from startx/xinit
|
|
|
|
# session launch
|
|
eval $(dbus-launch --sh-syntax --exit-with-session)
|
|
|
|
xss-lock -- slock &
|
|
redshift &
|
|
dunst &> /dev/null & #temp fix
|
|
# MPD daemon start (if no other user instance exists)
|
|
[ ! -s "$XDG_CONFIG_HOME/mpd/pid" ] && mpd
|
|
pulsemixer --set-volume 50
|
|
sbacklight set 3 &
|
|
setbg &
|
|
dwmblocks &
|
|
xrdb "$XDG_CONFIG_HOME/X11/xresources"
|
|
xrdb -merge "$XDG_STATE_HOME/xcolors"
|
|
xautolock -locker slock -time 5 -corners 000- &
|
|
|
|
xinput set-prop 'Synaptics TM3072-003' 'libinput Tapping Enabled' 1 &
|
|
xinput set-prop 'Synaptics TM3072-003' 'libinput Natural Scrolling Enabled' 1 &
|
|
xinput set-prop 'Synaptics TM3072-003' 'libinput Accel Speed' 0.4 &
|
|
setxkbmap 'fr(oss)'
|
|
remaps &
|
|
sxhkd &
|