blob: cd6a0c74300bff67bbc4189300691f1a9c45c6f3 (
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/bash
# Pulse audio
/usr/bin/start-pulseaudio-x11
# Load key bindings
$HOME/.local/bin/keyboard
# Load Xresources to light colorscheme
source $HOME/.local/colors.zsh
xrdb $HOME/.Xresources/urxvt
# Background
feh --bg-fill /usr/share/backgrounds/More_Kamikochi_by_mendhak.jpg
# feh --bg-fill /usr/share/backgrounds/Grand_Canyon_North_Rim_by_Rihards_Vilks.jpg
# Disable screen going to sleep
xset -dpms
xset s off
# Disable bell
xset -b
# SSH agent
eval $(ssh-agent)
# Programs to start
nm-applet &
dunst &
redshift &
dropbox &
exec i3
|