question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Disable linux auto update notifications

See original GitHub issue
  • I am on the latest Hyper.app version

  • I have searched the issues of this repo and believe that this is not a duplicate

  • OS version and name: ArchLinux

  • Hyper.app version: 1.4.8 (and canary.8 too)

Issue

It should be possible (with a config line) to disable the update notification. Constantly having to close that notification is really annoying.

Perhaps like this:

    // choose either `'stable'` for receiving highly polished,
    // or `'canary'` for less polished but more frequent updates.
    // set to `false` to disable update notifications
    updateChannel: false,

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:10
  • Comments:15

github_iconTop GitHub Comments

35reactions
ghostcommented, Feb 4, 2018

Easy hack

Add this to .hyper.js

    css: `
      .notifications_view {
        display: none;
      }
    `

Or even with fancier fade out effect

    css: `
      @keyframes fadeOut {
        80% {
          opacity: 1;
        }
        99% {
          dispaly: block;
        }
        100% {
          display: none;
          opacity: 0;
        }
      }
      .notifications_view {
        animation: fadeOut ease 5s;
        animation-fill-mode: forwards;
      }
    `

9reactions
passcodcommented, Jan 13, 2018

Um, automatics updates do not work on Linux and I do not expect them to work. I expect to update Hyper like any other linux package, the normal way. I would like to tell Hyper to kindly stop telling me about updates.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to disable the update manager popup? - Ask Ubuntu
search for app->update-notifier and un-tick the "auto-launch" option; close the window; gconf-editor this time as a user (i.e. without sudo) ...
Read more >
Disable Automatic Updates on Ubuntu 20.04 Focal Fossa Linux
How to disable Automatic Updates from GUI Desktop ... From the activities menu search for Software and click on Software & Updates icon....
Read more >
How to disable the auto update notification? : r/Ubuntu - Reddit
Open Software & Updates settings and set security updates to "download and install automatically". For other updates, set it to display every 2 ......
Read more >
How to Configure or Disable Linux Mint Update Notifications
In the Session & Startup window, click the “Application Autostart” tab and scroll until you see “Update Manager (Linux Mint Update Manager)” in ......
Read more >
Disable Annoying Update-Manager Popup in Ubuntu
Step1: Go to System->Administration->Software Sources->Updates tab,un-tick all check-boxes. update-manager. Step2: Go to System->Preferences->Startup ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found