Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nebadon2025/8dceb727f92224d50832fa477ca0ff3a to your computer and use it in GitHub Desktop.
Save nebadon2025/8dceb727f92224d50832fa477ca0ff3a to your computer and use it in GitHub Desktop.
/usr/lib/steamos/steamos-update-os-notifier
#!/bin/bash
# -*- mode: sh; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# vim: et sts=4 sw=4
# SPDX-License-Identifier: LGPL-2.1+
#
# Copyright © 2020-2021 Collabora Ltd.
# Copyright © 2020-2021 Valve Corporation.
#
# This file is part of steamos-customizations.
#
# steamos-customizations is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of the License,
# or (at your option) any later version.
set -e
set -u
# XXX: Disabled! The update-other boot mode is not functional and is, in fact, currently breaking boot configs.
# Removing this vector to trigger it until this is revisited.
# https://gitlab.steamos.cloud/jupiter/tasks/-/issues/547
exit 0
if [ ! -d /dev/disk/by-partsets/other ]; then
exit
fi
exec kupdate-notifier
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment