-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added themes option - added themes test - updated broken man page links
- Loading branch information
Showing
5 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
feh-empty-config = ./feh-empty-settings.nix; | ||
feh-bindings = ./feh-bindings.nix; | ||
feh-themes = ./feh-themes.nix; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
booth --full-screen --hide-pointer --slideshow-delay 20 | ||
example --info 'foo bar' | ||
feh --image-bg black | ||
imagemap -rVq --thumb-width 40 --thumb-height 30 --index-info '%n\n%wx%h' | ||
present --full-screen --sort name --hide-pointer | ||
webcam --multiwindow --reload 20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ pkgs, ... }: | ||
|
||
{ | ||
config = { | ||
programs.feh.enable = true; | ||
|
||
programs.feh.themes = { | ||
feh = [ "--image-bg" "black" ]; | ||
webcam = [ "--multiwindow" "--reload" "20" ]; | ||
present = [ "--full-screen" "--sort" "name" "--hide-pointer" ]; | ||
booth = [ "--full-screen" "--hide-pointer" "--slideshow-delay" "20" ]; | ||
imagemap = [ | ||
"-rVq" | ||
"--thumb-width" | ||
"40" | ||
"--thumb-height" | ||
"30" | ||
"--index-info" | ||
"%n\\n%wx%h" | ||
]; | ||
example = [ "--info" "foo bar" ]; | ||
}; | ||
|
||
test.stubs.feh = { }; | ||
|
||
nmt.script = '' | ||
assertFileContent \ | ||
home-files/.config/feh/themes \ | ||
${./feh-themes-expected} | ||
''; | ||
}; | ||
} |