diff options
author | Thanos Apollo <[email protected]> | 2023-10-27 00:13:17 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-27 00:13:17 +0300 |
commit | b23dfe545999faacbc46c46de0222eb3636f8b51 (patch) | |
tree | 47c9c1f471b2f6849e29539ea469ddd869e15c2e /.config/autostart | |
parent | d09eb6ddf23549ecff6698d61210418fb382c542 (diff) |
autostart: Fix naming & rewrite
Diffstat (limited to '.config/autostart')
-rwxr-xr-x | .config/autostart/autostart.sh | 30 |
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 |