Skip to content

Commit

Permalink
chore: add deprecation note
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Aug 5, 2024
1 parent 7e32f5e commit 5db4284
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[Desktop Entry]
Type=Application
Exec=/usr/bin/fixme
Name=Fixme
9 changes: 9 additions & 0 deletions includes.container/usr/bin/fixme
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

DOCS_URL="https://docs.vanillaos.org/handbook/en/nvidia-issues#i-am-running-a-no-more-supported-image"

adwdialog --title "Manual Intervention Required" --description "It seems you are using an image no longer supported by Vanilla OS, read the instructions to fix." --icon dialog-warning-symbolic --type question --suggested_label "How to Fix"

if [ $? -eq 0 ]; then
xdg-open $DOCS_URL
fi
5 changes: 5 additions & 0 deletions recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ stages:
- mkdir -p /etc/udev/rules.d
- ln -s /dev/null /etc/udev/rules.d/61-gdm.rules

- name: deprecation-notice
type: shell
commands:
- chmod +x /usr/bin/fixme

- name: cleanup
type: shell
commands:
Expand Down

0 comments on commit 5db4284

Please sign in to comment.