diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 7304c52..ace04c9 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -16,7 +16,7 @@ $color_white = rgb(FFFFFF) ### MONITORS ### ################ -monitor=,preferred,auto,1 +monitor=,preferred,auto,1.33 ################### diff --git a/sh/pull_all b/sh/pull_all new file mode 100755 index 0000000..6a244da --- /dev/null +++ b/sh/pull_all @@ -0,0 +1,10 @@ +#!/bin/bash + +for dir in */; do + if [ -d "$dir/.git" ]; then + echo "Pulling in $dir..." + git -C "$dir" pull + echo "" + fi +done +