changed how daemons are launched via xinitrc vs bspwm
This commit is contained in:
parent
662ca04500
commit
f10eef85aa
2 changed files with 19 additions and 16 deletions
|
|
@ -1,22 +1,14 @@
|
|||
#! /bin/sh
|
||||
# bspc rule -r "*"
|
||||
|
||||
#Autostart
|
||||
#Desktop
|
||||
xrandr --output HDMI-0 --brightness 1.1 & #--set TearFree on &
|
||||
#Laptop
|
||||
# xbacklight -set 70
|
||||
|
||||
picom --config /home/brian/.config/picom/picom.conf & # --experimental-backends &
|
||||
feh --bg-fill /home/brian/Pictures/nord_mountains.png &
|
||||
# picom --config /home/brian/.config/picom/picom.conf & # --experimental-backends &
|
||||
# feh --bg-fill /home/brian/Pictures/nord_mountains.png &
|
||||
feh --bg-fill /home/brian/Pictures/leaves.jpg &
|
||||
# feh --bg-fill /home/brian/Pictures/gruvbox_braille.png &
|
||||
dunst &
|
||||
xbanish &
|
||||
pulseaudio --start &
|
||||
bst -e btop &
|
||||
|
||||
#sxhkd keybindings
|
||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
||||
#sxhkd keybindings (unneccessary since it is called from ~/.xinitrc)
|
||||
# pgrep -x sxhkd > /dev/null || sxhkd &
|
||||
|
||||
# Monitor(s)
|
||||
# bspc monitor -d I II III IV V VI VII VIII IX X
|
||||
|
|
@ -34,11 +26,14 @@ bspc config remove_disabled_monitors true
|
|||
bspc config remove_unplugged_monitors true
|
||||
bspc config merge_overlapping_monitors true
|
||||
|
||||
bspc config normal_border_color "#444444"
|
||||
bspc config normal_border_color "#44444"
|
||||
# bspc config active_border_color "#64a098"
|
||||
bspc config active_border_color "#2c77ac"
|
||||
# bspc config active_border_color "#a9b926"
|
||||
# bspc config focused_border_color "#64a098"
|
||||
bspc config focused_border_color "#2c77ac"
|
||||
# bspc config focused_border_color "#a9b926"
|
||||
# bspc config presel_feedback_color "#64a098"
|
||||
bspc config presel_feedback_color "#2c77ac"
|
||||
# bspc config presel_feedback_color "#a9b926"
|
||||
|
||||
|
|
|
|||
12
xinitrc.txt
12
xinitrc.txt
|
|
@ -35,14 +35,22 @@ fi
|
|||
# Start compositor
|
||||
# picom blah blah ...
|
||||
|
||||
#Desktop
|
||||
xrandr --output HDMI-0 --brightness 1.1 & #--set TearFree on &
|
||||
#Laptop
|
||||
# xbacklight -set 70
|
||||
|
||||
picom --config /home/brian/.config/picom/picom.conf & # --experimental-backends &
|
||||
# Start applets, daemons, etc.
|
||||
# diskie
|
||||
# nm-applet
|
||||
# ...
|
||||
dunst &
|
||||
xbanish &
|
||||
pulseaudio --start &
|
||||
|
||||
# Start i3wm
|
||||
# exec i3
|
||||
|
||||
# Start bspwm
|
||||
sxhkd -c /home/brian/.config/sxhkd/sxhkdrc&
|
||||
pgrep -x sxhkd > /dev/null || sxhkd -c /home/brian/.config/sxhkd/sxhkdrc &
|
||||
exec bspwm -c /home/brian/.config/bspwm/bspwmrc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue