#!/bin/bash start-picom() { if pgrep -x "picom" >/dev/null; then echo "picom is already running" else picom fi } set-wallpaper() { if [ $HOSTNAME == zeus ]; then xwallpaper --focus ~/wallpapers/library-fantasy-tree.jpg --screen 0 else feh --bg-scale ~/wallpapers/library-fantasy-tree.jpg fi } get-started() { ( start-picom & set-wallpaper & ## set keyboard setxkbmap us -option ctrl:swapcaps & ) } get-started