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.
38 lines
707 B
38 lines
707 B
#!/bin/bash
|
|
|
|
# polkit
|
|
lxpolkit &
|
|
|
|
# keyboard
|
|
setxkbmap de
|
|
|
|
# bluetooth & network
|
|
blueman-applet &
|
|
nm-applet &
|
|
|
|
# audio
|
|
pulseaudio --start &
|
|
start-pulseaudio-x11 &
|
|
pasystray &
|
|
[ ! -s ~/.config/mpd/pid ] && mpd
|
|
|
|
# applications
|
|
discord &
|
|
nextcloud &
|
|
telegram-desktop &
|
|
vivaldi-stable &
|
|
thunderbird &
|
|
|
|
# keyring
|
|
gnome-keyring-daemon --start --daemonize --components=pkcs11,secrets,ssh,gpg &
|
|
# set rate
|
|
xset r rate 400 30
|
|
# lock screen after 15 minutes
|
|
xautolock -secure -time 15 -locker '~/.i3/lock.sh' &
|
|
# change caps and esc key
|
|
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
|