Files
fish-config/functions/wake-lock.fish
T
rootiest b0c6d7f7f5 refactor: use __fish_palette in system and package functions
44 duplicated declarations replaced by 8 calls. Output strings untouched.

fish-deps, upgrade and wake-lock have no --help path and are deliberately
NOT added to the harness case list -- upgrade and wake-lock have side
effects, and runtime coverage is not worth mutating state during tests.
They are covered by --structural, which proves mechanically that no
rendering line changed.
2026-09-07 20:05:23 -04:00

37 lines
1.1 KiB
Fish

# Copyright (C) 2026 Rootiest
# SPDX-License-Identifier: AGPL-3.0-or-later
# CATEGORY
# 14-miscellaneous
#
# SYNOPSIS
# wake-lock <command> [args...]
#
# DESCRIPTION
# Runs a command under systemd-inhibit to prevent the system from idling
# or sleeping for the duration of the command.
#
# ARGUMENTS
# command Command to run with sleep inhibition active
# args... Arguments forwarded to the command
#
# EXIT STATUS
# 0 Command ran and completed
# 1 No command provided
#
# EXAMPLE
# wake-lock rsync -avz src/ dest/
function wake-lock --description 'Run a command while inhibiting system sleep'
if test (count $argv) -eq 0
__fish_palette
echo "$c_head""Usage:$c_reset $c_cmd""wake-lock$c_reset $c_arg""[command] [args...]$c_reset"
return 1
end
echo "Running '$argv' with sleep inhibition active..."
# --what=idle:sleep prevents the system from auto-sleeping or being suspended
# --who identifies your function in 'systemd-inhibit --list'
systemd-inhibit --why="Manual task inhibition" --who="wake-lock" --what=idle:sleep $argv
end