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.

Doesn't work on Ubuntu

See original GitHub issue

Pennywise behaves like a normal window (doesn’t stay on top). Adjusting opacity doesn’t work either. No error messages.

Tested on Ubuntu 18.04. Installed version: pennywise_0.1.0_amd64.deb.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:8
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
jurgenzzcommented, Oct 31, 2018

I run local build and looks like it works, when you move mainWindow.setAlwaysOnTop(true) inside the ready-to-show listener.

e.g. -


  // Show the window once the content has been loaded
  mainWindow.on('ready-to-show', () => {
    mainWindow.show();
    bindIpc();
    // add here
    mainWindow.setAlwaysOnTop(true);
  });

  mainWindow.on('closed', function () {
    mainWindow = null;
  });

  // Set the window to be always on top
  mainWindow.setVisibleOnAllWorkspaces(true);
  mainWindow.setFullScreenable(true);
  // remove from here
  // mainWindow.setAlwaysOnTop(true);

Someone maybe can confirm this and update?

1reaction
adamelliotfieldscommented, Oct 31, 2018

Running Mint 19 (which is Ubuntu 18.04 under the hood). Experiencing the same behavior as @piotrek-k with the amd64 build.

Cannot install i386 on an amd64 system, for obvious reasons.

@piotrek-k, the installer creates a symlink at /usr/local/bin/pennywise. You should be able to run the command pennywise from any terminal window.

Thanks @kamranahmedse for making this. I was looking for something like Helium over the weekend for my non-Mac PCs.

Edit: It’s a known Electron issue on Linux. See electron/electron#12445.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Ubuntu Linux PC Won't Boot? 5 Common Issues and Fixes
Ubuntu Not Booting? Try These 5 Tips · Check for bootable devices · Is the GRUB bootloader working? · Repair the bootloader menu...
Read more >
How to Fix an Ubuntu System When It Won't Boot
How to Fix an Ubuntu System When It Won't Boot · Check if You Can Access the GRUB Boot Loader · Repair GRUB...
Read more >
18.04: Why this command doesn't work? [duplicate]
You're executing your script using #!/bin/bash which launches the new bash session invisible for you and changes its directory to $a and ...
Read more >
Ubuntu Software Center Not Working? Here Are the Fixes
One of the oddest fixes for the Ubuntu Software Center not working problem is simply changing the language. You can even reselect your...
Read more >
Troubleshooting
This page attempts to guide users to either an appropriate solution to their issues, or the correct forum/thread where they can get help....
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