summaryrefslogtreecommitdiff
path: root/.config/autostart
diff options
context:
space:
mode:
Diffstat (limited to '.config/autostart')
-rwxr-xr-x.config/autostart/autostart.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/.config/autostart/autostart.sh b/.config/autostart/autostart.sh
new file mode 100755
index 0000000..87ee293
--- /dev/null
+++ b/.config/autostart/autostart.sh
@@ -0,0 +1,30 @@
+#!/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