nixos/home-manager/configs/qtile/autostart.sh
Andreas Zweili d9c7c01d1c Fix the autostart setup
For some reason keeweb always crashed because of the `nitrogen --restore`
    tasks. Couldn't figure out why, however it works when the wallpaper gets
    restored by grobi after it changed the screen layout. Not perfect but it
    works for me.
2022-04-15 15:45:44 +02:00

9 lines
143 B
Bash
Executable File

#!/usr/bin/env bash
scripts=$(ls -1 ~/.config/qtile/autostart.d/*.sh)
for i in $scripts
do
source $i
done
echo "Finished qtile autostart"