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.
26 lines
584 B
26 lines
584 B
#!/usr/bin/env bash
|
|
# These things are run when an Openbox X Session is started.
|
|
# You may place a similar script in $HOME/.config/openbox/autostart
|
|
# to run user-specific things.
|
|
#
|
|
# ---
|
|
setxkbmap us
|
|
|
|
# Compositor.
|
|
picom -b 2>/dev/null
|
|
|
|
#dock
|
|
cairo-dock -o
|
|
|
|
# bg
|
|
feh --bg-scale ~/.themes/wallpaper.png &
|
|
|
|
# Authentication agent (PolicyKit).
|
|
if [ -x "$(command -v lxpolkit)" ]; then
|
|
lxpolkit 2>/dev/null &
|
|
elif [ -x "/usr/libexec/polkit-gnome-authentication-agent-1" ]; then
|
|
/usr/libexec/polkit-gnome-authentication-agent-1 2>/dev/null &
|
|
fi
|
|
|
|
~/.config/conky/Zavijava/start.sh
|