no longer using wallpaper symlink
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
#!/bin/sh
|
||||
source "$HOME/.config/wryn/env/env"
|
||||
|
||||
RESOLUTION='1920x1080';
|
||||
|
||||
@ -17,6 +18,5 @@ for display in $(xrandr | grep connect | awk '{print $1;}' | grep -v "$CURRENT_M
|
||||
xrandr --output $display --off;
|
||||
done;
|
||||
|
||||
feh --bg-fill --randomize $HOME/.config/wryn/wallpaper;
|
||||
|
||||
"$DOTWRYN/bin/desktop/feh/randomize-background.sh"
|
||||
[ -f $HOME/.config/wryn/sfx ] && $HOME/.config/wryn/sfx gamedock
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
source "$HOME/.config/wryn/env/env"
|
||||
|
||||
NATIVE_MONITOR='eDP1';
|
||||
CONNECTED_MONITOR=$(xrandr | grep ' connect' | awk '{print $1;}' | grep -v "$NATIVE_MONITOR" | head -n 1);
|
||||
|
||||
@ -28,5 +30,5 @@ for display in $(xrandr | grep connect | awk '{print $1;}' | grep -v "$NATIVE_MO
|
||||
xrandr --output $display --off;
|
||||
done;
|
||||
|
||||
feh --recursive --bg-fill --randomize $HOME/.config/wryn/wallpaper;
|
||||
"$DOTWRYN/bin/desktop/feh/randomize-background.sh"
|
||||
[ -f $HOME/.config/wryn/sfx ] && $HOME/.config/wryn/sfx login
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
source "$HOME/.config/wryn/env/env"
|
||||
|
||||
NATIVE_MONITOR='eDP1';
|
||||
HOMEDOCK_MONITOR=$(xrandr | grep ' connect' | awk '{print $1;}' | grep -v "$NATIVE_MONITOR" | head -n 1);
|
||||
|
||||
@ -15,6 +17,5 @@ for display in $(xrandr | grep connect | awk '{print $1;}' | grep -v "$HOMEDOCK_
|
||||
xrandr --output $display --off;
|
||||
done;
|
||||
|
||||
feh --bg-fill --randomize $HOME/.config/wryn/wallpaper;
|
||||
|
||||
"$DOTWRYN/bin/desktop/feh/randomize-background.sh"
|
||||
[ -f $HOME/.config/wryn/sfx ] && $HOME/.config/wryn/sfx homedock
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
source "$HOME/.config/wryn/env/env"
|
||||
|
||||
NATIVE_MONITOR='eDP1';
|
||||
TV_DISPLAY=$(xrandr | grep ' connect' | awk '{print $1;}' | grep -v "$NATIVE_MONITOR" | head -n 1);
|
||||
|
||||
@ -15,6 +17,5 @@ for display in $(xrandr | grep connect | awk '{print $1;}' | grep -v "$TV_DISPLA
|
||||
xrandr --output $display --off;
|
||||
done;
|
||||
|
||||
feh --bg-fill --randomize $HOME/.config/wryn/wallpaper;
|
||||
|
||||
"$DOTWRYN/bin/desktop/feh/randomize-background.sh"
|
||||
[ -f $HOME/.config/wryn/sfx ] && $HOME/.config/wryn/sfx gamedock
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
source "$HOME/.config/wryn/env/env"
|
||||
|
||||
NATIVE_MONITOR='eDP1';
|
||||
NATIVE_MODE="$(xrandr | grep -A 2 "$NATIVE_MONITOR" | sed -n '2 p' | awk '{print $1;}')";
|
||||
|
||||
@ -17,6 +19,5 @@ for display in $(xrandr | grep connect | awk '{print $1;}' | grep -v "$NATIVE_MO
|
||||
xrandr --output $display --off;
|
||||
done;
|
||||
|
||||
feh --bg-fill --randomize $HOME/.config/wryn/wallpaper;
|
||||
|
||||
"$DOTWRYN/bin/desktop/feh/randomize-background.sh"
|
||||
[ -f $HOME/.config/wryn/sfx ] && $HOME/.config/wryn/sfx undock
|
||||
|
Reference in New Issue
Block a user