#!/bin/sh

# tlp - systemd suspend/resume hook
#
# Copyright (c) 2025 Thomas Koch <linrunner at gmx.net> and others.
# This software is licensed under the GPL v2 or later.

case $1 in
    pre)  tlp suspend ;;
    post) tlp resume  ;;
esac
