Skip to content

Commit

Permalink
Merge branch 'main' into refactor-env
Browse files Browse the repository at this point in the history
  • Loading branch information
newtoallofthis123 authored Feb 26, 2024
2 parents 4909878 + 34b9619 commit 5411626
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 23 deletions.
2 changes: 1 addition & 1 deletion swhkd/src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ fn socket_write(command: &str, socket_path: PathBuf) -> Result<(), Box<dyn Error
pub fn check_input_group() -> Result<(), Box<dyn Error>> {
if !Uid::current().is_root() {
let groups = nix::unistd::getgroups();
for (_, groups) in groups.iter().enumerate() {
for groups in groups.iter() {
for group in groups {
let group = Group::from_gid(*group);
if group.unwrap().unwrap().name == "input" {
Expand Down
34 changes: 12 additions & 22 deletions swhkd/src/uinput.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,21 @@ use std::os::unix::io::AsRawFd;
ioctl_none!(rfkill_noinput, b'R', 1);

pub fn create_uinput_device() -> Result<VirtualDevice, Box<dyn std::error::Error>> {
let mut keys = AttributeSet::<Key>::new();
for key in get_all_keys() {
keys.insert(key);
}
let keys: AttributeSet<Key> = get_all_keys().iter().copied().collect();

let mut relative_axes = AttributeSet::<RelativeAxisType>::new();
for axis in get_all_relative_axes() {
relative_axes.insert(axis);
}
let relative_axes: AttributeSet<RelativeAxisType> =
get_all_relative_axes().iter().copied().collect();

let device = VirtualDeviceBuilder::new()?
.name("swhkd virtual output")
.with_keys(&keys)?
.with_relative_axes(&relative_axes)?
.build()
.unwrap();
.build()?;
Ok(device)
}

pub fn create_uinput_switches_device() -> Result<VirtualDevice, Box<dyn std::error::Error>> {
let mut switches = AttributeSet::<SwitchType>::new();
for switch in get_all_switches() {
switches.insert(switch);
}
let switches: AttributeSet<SwitchType> = get_all_switches().iter().copied().collect();

// We have to disable rfkill-input to avoid blocking all radio devices. When
// a new device (virtual or physical) with the SW_RFKILL_ALL capability bit
Expand All @@ -52,12 +43,11 @@ pub fn create_uinput_switches_device() -> Result<VirtualDevice, Box<dyn std::err
let device = VirtualDeviceBuilder::new()?
.name("swhkd switches virtual output")
.with_switches(&switches)?
.build()
.unwrap();
.build()?;
Ok(device)
}
pub fn get_all_keys() -> Vec<Key> {
vec![
pub fn get_all_keys() -> &'static [Key] {
&[
evdev::Key::KEY_RESERVED,
evdev::Key::KEY_ESC,
evdev::Key::KEY_1,
Expand Down Expand Up @@ -609,8 +599,8 @@ pub fn get_all_keys() -> Vec<Key> {
]
}

pub fn get_all_relative_axes() -> Vec<RelativeAxisType> {
vec![
pub fn get_all_relative_axes() -> &'static [RelativeAxisType] {
&[
RelativeAxisType::REL_X,
RelativeAxisType::REL_Y,
RelativeAxisType::REL_Z,
Expand All @@ -627,8 +617,8 @@ pub fn get_all_relative_axes() -> Vec<RelativeAxisType> {
]
}

pub fn get_all_switches() -> Vec<SwitchType> {
vec![
pub fn get_all_switches() -> &'static [SwitchType] {
&[
SwitchType::SW_LID,
SwitchType::SW_TABLET_MODE,
SwitchType::SW_HEADPHONE_INSERT,
Expand Down

0 comments on commit 5411626

Please sign in to comment.