Skip to content
/ fner Public

A simple brightness and volume change notification.

Notifications You must be signed in to change notification settings

liudng/fner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fner

Forked from obhud.

Installation

Clone the repo to local:

git clone git@github.com:liudng/fner.git ~/src/fner

Create a new bash script file ~/.local/bin/fner:

#!/bin/bash
cd ~/src/fner
python3 fner.py $@

Configs for Openbox

<?xml version="1.0" encoding="UTF-8"?>
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
  <keyboard>
    <keybind key="XF86AudioRaiseVolume">
      <action name="Execute">
        <command>fner --volume up</command>
      </action>
    </keybind>
    <keybind key="XF86AudioLowerVolume">
      <action name="Execute">
        <command>fner --volume down</command>
      </action>
    </keybind>
    <keybind key="XF86AudioMute">
      <action name="Execute">
        <command>fner --volume toggle</command>
      </action>
    </keybind>
    <keybind key="XF86MonBrightnessUp">
      <action name="Execute">
        <command>fner --brightness up</command>
      </action>
    </keybind>
    <keybind key="XF86MonBrightnessDown">
      <action name="Execute">
        <command>fner --brightness down</command>
      </action>
    </keybind>
  </keyboard>
</openbox_config>

Screenshots

brightness

volume

References

About

A simple brightness and volume change notification.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published