#!/bin/bash

key="i2c_hid_acpi"
confile="/etc/modules-load.d/i2c_hid.conf"

if is_context_exists "$key" "$confile"; then
    return 0
fi

echo "$key" | tee -a "$confile"
