Oxide-Utils#
As of version 2.6, Oxide ships with several new command line utilities meant to mimic common
existing linux command line tools meant for dealing with desktop environments. notify-send
was added in version 2.5.
desktop-file-validate#
update-desktop-database#
xclip#
xdg-desktop-icon#
xdg-open#
xdg-settings#
gio#
notify-send#
inject_evdev#
This application allows you to script input events. This can be used for things like injecting screen swipes from a script. It functions by taking a string on stdin and parsing the linux event codes and then passing them to the specified input device.
Usage: inject_evdev [options] device
Inject evdev events.
Options:
-h, --help Displays help on commandline options.
--help-all Displays help including Qt specific options.
-v, --version Displays version information.
Arguments:
device Device to emit events to. See /dev/input for possible values.
Example usage:
inject_evdev event2 << EOF
EV_ABS ABS_MT_TRACKING_ID 123
EV_SYN SYN_MT_REPORT
EV_SYN SYN_REPORT
EV_ABS ABS_MT_TRACKING_ID -1
EV_SYN SYN_MT_REPORT
EV_SYN SYN_REPORT
EOF
fbinfo#
This application will output information about the framebuffer in a human readable format.