blob: fd1423b6a90188ae0e333590d90ebd170522e4c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
xrdb ${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources & # Uncomment to use Xresources colors/settings on startup
# Set wallpaper and terminal colors
set_wallpaper
# Increase key speed via a rate change. This comes from Luke's remap script, but I don't want to remap caps lock to escape so this is all I used
xset r rate 300 50
# Start music player daemon
mpd &
# Start locking application
xss-lock slock &
# compositor for transparency/blur/animations
picom -b
# program for keybindings
sxhkd &
# Hide mouse when not in use
unclutter &
# Start status bar script
dwmblocks &
# start notification daemon
dunst &
# xorg fix
xprofile --dpi 96
|