35 lines
946 B
Text
35 lines
946 B
Text
|
# Configure output directives such as mode, position, scale and transform using kanshi.
|
||
|
kanshi >/dev/null 2>&1 &
|
||
|
|
||
|
# Use xrandr for x-wayland
|
||
|
# xrandr --output DP-1 --primary &
|
||
|
|
||
|
# Set background image.
|
||
|
swww-daemon &
|
||
|
|
||
|
# Launch a panel such as yambar or waybar.
|
||
|
waybar >/dev/null 2>&1 &
|
||
|
|
||
|
# Enable notifications. Typically GNOME/KDE application notifications go
|
||
|
# through the org.freedesktop.Notifications D-Bus API and require a client such
|
||
|
# as mako to function correctly. Thunderbird is an example of this.
|
||
|
mako >/dev/null 2>&1 &
|
||
|
|
||
|
# Start the Thunar daemon for better startup
|
||
|
dolphin --daemon &
|
||
|
|
||
|
## Set dark theme
|
||
|
# sh ~/.themes/orzhovtheme.sh &
|
||
|
|
||
|
|
||
|
# Deploy swww wallpapers
|
||
|
swww img -o HDMI-A-1 ~/Picturws/wallpapers/hobbits.jpg &
|
||
|
swww img -o DP-1 ~/Pictures/wallpapers/statues.jpg &
|
||
|
swww img -o DP-2 ~/Pictures/wallpapers/bluemana.png &
|
||
|
swww img -o eDP-1 ~/Pictures/wallpapers/tree.jpg &
|
||
|
|
||
|
# Custom software
|
||
|
# spotify &
|
||
|
|
||
|
sh $HOME/.scripts/power.sh
|