Skip to content
Discussion options

You must be logged in to vote

Unable to locate executable 'ATTRIBUTE=dithering': No such file or directory

Looks like you haven't prefixed ExecStart with /usr/bin/env, double check my last comment 😉

Note how it's trying to run ATTRIBUTE=dithering as the binary name and failing. Again, this syntax is interpreted and solved by a shell environment, which is not the case here (unless the command itself is shell -c 'commands')

Your service should look something like:

[Service]
Type=oneshot
ExecStartPre=/bin/sleep 1
ExecStart=/usr/bin/env ATTRIBUTE=dithering nvibrant
ExecStart=nvibrant 0 300 0 300

Or the previous's comment one for also explicitly setting the 'vibrance' attribute (default) in the second command

Replies: 3 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@Tremeschin
Comment options

Answer selected by aburley79
Comment options

You must be logged in to vote
1 reply
@Tremeschin
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants