diff options
author | Camil Staps | 2016-03-21 12:13:18 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-30 19:11:08 +0100 |
commit | bb5f66119486d5efa0d5b615e6df4b5257d3ee19 (patch) | |
tree | 3eeb8dd4693d2f10ace1b7939e79c02f14a84bf3 | |
parent | Verse in bashrc (diff) |
Moved background logic to bin.local
-rwxr-xr-x | bin/dualmon | 2 | ||||
-rwxr-xr-x | bin/singlemon | 1 | ||||
-rw-r--r-- | system/xsessionrc.symlink | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/bin/dualmon b/bin/dualmon index 4437e4d..02ae65d 100755 --- a/bin/dualmon +++ b/bin/dualmon @@ -1,4 +1,4 @@ #!/bin/bash xrandr --output eDP1 --below HDMI2 --primary --output HDMI2 --auto xinput disable Atmel -if [ -f ~/.bg.png ]; then feh -B white --bg-max ~/.bg.png; fi +setbg diff --git a/bin/singlemon b/bin/singlemon index cce0a15..8034639 100755 --- a/bin/singlemon +++ b/bin/singlemon @@ -1,3 +1,4 @@ #!/bin/bash xrandr --output eDP1 --primary --auto --output HDMI2 --off xinput enable Atmel +setbg diff --git a/system/xsessionrc.symlink b/system/xsessionrc.symlink index abd5bfe..a7578e2 100644 --- a/system/xsessionrc.symlink +++ b/system/xsessionrc.symlink @@ -8,7 +8,7 @@ export DE='gnome' nohup gnome-settings-daemon -r & >/dev/null # Background image -if [ -f ~/.bg.png ]; then feh -B white --bg-max ~/.bg.png; fi +setbg # GPG agent envfile="$HOME/.gnupg/gpg-agent.env" |