#!/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 feh --bg-scale ~/wallpapers/cyberpunk-red.png 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