diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-12-22 16:50:22 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-12-22 16:50:22 +0100 |
commit | 48dc1530489a46252dac135a1cff9874ed3c1c27 (patch) | |
tree | 097c740b2e2ea486f2da9c60eb5b02671a7a0421 /user | |
parent | bcb98310ed759564617f9ace169b01831cd56aa0 (diff) |
background: fix format issue for background image
in $HOME/.wmii/wmiirc, we used to load the background image this way:
$ feh --bg-fill ~/Images/background.jpg
However, if we want to load another Image format (such as png, gif,
...), we need to change the extension in this file.
To be more portable, we removed the extension since feh is capable of
guessing the type of file.
Now, we just have an image (or a [sym]link to an image) named
~/Image/background for it to be loaded when X starts.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'user')
-rwxr-xr-x | user/.wmii/wmiirc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/.wmii/wmiirc b/user/.wmii/wmiirc index 6b2096c..8c508d1 100755 --- a/user/.wmii/wmiirc +++ b/user/.wmii/wmiirc @@ -302,7 +302,7 @@ wmiir write /ctl <<! border 1 ! -feh --bg-fill ~/Images/background.jpg +feh --bg-fill ~/Images/background # Misc progsfile="$(wmiir namespace)/.proglist" |