Skip to content

Instantly share code, notes, and snippets.

@apsun
Created May 13, 2025 04:28
Show Gist options
  • Save apsun/59dbed713839202cbfde88b7ad6df9e9 to your computer and use it in GitHub Desktop.
Save apsun/59dbed713839202cbfde88b7ad6df9e9 to your computer and use it in GitHub Desktop.
# Set brightness
bright() {
dbus-send \
--dest=com.ddcutil.DdcutilService \
--type=method_call \
/com/ddcutil/DdcutilObject \
com.ddcutil.DdcutilInterface.SetVcp \
int32:1 string: byte:0x10 uint16:"$1" uint32:0
}
# Set volume
vol() {
dbus-send \
--dest=com.ddcutil.DdcutilService \
--type=method_call \
/com/ddcutil/DdcutilObject \
com.ddcutil.DdcutilInterface.SetVcp \
int32:1 string: byte:0x62 uint16:"$1" uint32:0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment