dotfiles/.xsessionrc

56 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-07-31 07:08:07 +00:00
#!/usr/bin/env bash
2020-06-16 01:16:16 +00:00
2020-07-30 07:54:52 +00:00
if [[ "$DESKTOP_SESSION" = "dwm" ]]; then
export _JAVA_AWT_WM_NONREPARENTING=1
export AWT_TOOLKIT=MToolkit
wmname LG3D
2020-06-16 01:16:16 +00:00
2020-07-30 07:54:52 +00:00
compton &
redshift &
dwmstatus &
2020-08-04 08:47:37 +00:00
dunst &
2021-07-05 08:21:45 +00:00
numlockx on &
2020-06-16 01:16:16 +00:00
2021-10-20 20:21:36 +00:00
if command -v blueman-applet &> /dev/null ; then
blueman-applet &
fi
# Audio
if command -v pasystray &> /dev/null ; then
pasystray &
fi
if command -v nextcloud &> /dev/null ; then
2021-11-22 19:02:19 +00:00
nextcloud --background &
2021-10-20 20:21:36 +00:00
fi
if command -v signal-desktop &> /dev/null ; then
signal-desktop --start-in-tray &
fi
2021-11-22 19:01:21 +00:00
if command -v steam &> /dev/null ; then
steam -silent &
fi
2021-10-20 20:21:36 +00:00
# Bluetooth
if command -v jetbrains-toolbox &> /dev/null ; then
jetbrains-toolbox --minimize &
fi
# Authentication agent for running application as root
if test /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 ; then
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
fi
# Set background
2021-07-06 23:59:49 +00:00
if test -f /usr/share/backgrounds/brad-huchteman-stone-mountain.jpg ; then
feh --bg-scale /usr/share/backgrounds/brad-huchteman-stone-mountain.jpg &
2020-07-31 07:08:07 +00:00
else
2021-07-06 23:59:49 +00:00
if test -f /usr/share/backgrounds/gnome/Road.jpg ; then
feh --bg-scale /usr/share/backgrounds/gnome/Road.jpg &
2020-07-31 07:08:07 +00:00
fi
2020-07-30 09:42:50 +00:00
fi
2020-07-30 07:54:52 +00:00
fi