You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
463 B
20 lines
463 B
#!/bin/bash
|
|
|
|
#dropbox start &
|
|
lxpolkit &
|
|
discord &
|
|
nextcloud &
|
|
telegram-desktop &
|
|
|
|
start-pulseaudio-x11 &
|
|
pasystray &
|
|
gnome-keyring-daemon --start --daemonize --components=pkcs11,secrets,ssh,gpg &
|
|
xset r rate 400 30
|
|
nm-applet &
|
|
xautolock -secure -time 15 -locker 'i3lock -b -d' &
|
|
#sleep 2 && xmodmap ~/.i3/speedswapper &
|
|
# disable touchpad
|
|
for id in $(xinput list | sed -rn 's/.*touchpad.*id=([0-9]+).*/\1/ip'); do
|
|
xinput set-prop "$id" "Device Enabled" 0
|
|
done
|