tarius

joined 1 year ago
[–] tarius@lemmy.ml 3 points 6 months ago* (last edited 6 months ago) (1 children)

xinput --disable is not working due to Wayland

[–] tarius@lemmy.ml 10 points 6 months ago (4 children)

No. The touch panel is making ghost inputs. So, I want to get a DE without touch support or need to figure out how I can disable touch input.

13
submitted 6 months ago* (last edited 6 months ago) by tarius@lemmy.ml to c/linux@lemmy.ml
 

I have an old AIO PC and its touch panel is not working properly. Are there any DEs or distros that doesnt have touch support?

Edit: Thanks to everyone that replied and suggested solutions. For me this worked: https://linuxconfig.org/how-to-blacklist-a-module-on-ubuntu-debian-linux

[–] tarius@lemmy.ml 8 points 6 months ago (1 children)
[–] tarius@lemmy.ml 1 points 6 months ago

I already use vnStat with Debian. Was wondering if theres an alternative for Windows

[–] tarius@lemmy.ml 1 points 6 months ago

I was looking for something more simple like vnStat

1
submitted 6 months ago* (last edited 6 months ago) by tarius@lemmy.ml to c/selfhost@lemmy.ml
 

cross-posted from: https://lemmy.ml/post/15121280

preferably with a web console (not required)

Edit: I went with this as a solution for now: https://github.com/Ashfaaq18/OpenNetMeter

7
submitted 6 months ago* (last edited 6 months ago) by tarius@lemmy.ml to c/opensource@lemmy.ml
 

preferably with a web console (not required)

Edit: I went with this as a solution for now: https://github.com/Ashfaaq18/OpenNetMeter

[–] tarius@lemmy.ml 41 points 7 months ago* (last edited 7 months ago) (2 children)

Penpot is the first open-source design tool for design and code collaboration. Designers can create stunning designs, interactive prototypes, design systems at scale, while developers enjoy ready-to-use code and make their workflow easy and fast. And all of this with no handoff drama.

https://github.com/penpot/penpot

10
submitted 8 months ago* (last edited 8 months ago) by tarius@lemmy.ml to c/linux@lemmy.ml
 

I am using vnStat to monitor network bandwidth on a Debian host that has several Docker containers. Because of the containers, there are several interfaces in addition to eth0.

My question is, should I just monitor eth0 instead of looking at all the bridge and virtual interfaces to get the actual usage because at the end of the day, everything goes through eth0? Or am I looking at this wrong?

Sample output:

                      rx      /      tx      /     total    /   estimated
 br-1ee235bc0b60:
       2024-03     13.56 MiB  /   97.42 MiB  /  110.98 MiB  /  391.02 GiB
         today     13.56 MiB  /   97.42 MiB  /  110.98 MiB  /  112.54 MiB

 br-2ce98d77a35a:
       2024-03           0 B  /         0 B  /         0 B  /     --
         today           0 B  /         0 B  /         0 B  /     --

 docker0:
       2024-03           0 B  /         0 B  /         0 B  /     --
         today           0 B  /         0 B  /         0 B  /     --

 eth0:
       2024-03     98.03 MiB  /   15.04 MiB  /  113.07 MiB  /  398.37 GiB
         today     98.03 MiB  /   15.04 MiB  /  113.07 MiB  /  114.66 MiB
[–] tarius@lemmy.ml 14 points 9 months ago* (last edited 9 months ago)

Someone has started a new repo for tracking these: https://github.com/ssddanbrown/Open-Source-Confusion-Cases

Not really reporting but, can spread awareness

Edit: "someone" is the developer of BookStack

[–] tarius@lemmy.ml 6 points 10 months ago* (last edited 10 months ago)
[–] tarius@lemmy.ml 1 points 1 year ago

I didnt see it mentioned but, Ive been using Instander for some time. Its been great!

 

I have had these add-ons installed for a long time. But, do I need them all?

ClearURLs

Skip Redirect

Smart Referer

 

I am looking to monitor self hosted services that can send notifications to Telegram. Are there any web service monitoring solutions that can be installed on Windows and not installed using Docker?

I checked through awesome-selfhosted and awesome-sysadmin repos and couldn't find one. All the ones I saw were either for Linux or container based.

EDIT: For anyone that comes across this, here is how I resolved this. Thanks to u/dotmatrix for suggesting healthchecks.io

SOLUTION

On the host

  1. Script to check the status of the webpage. Save the file with ps1 extension
$hc= "https://hc-ping.com/<blahblahblah>"
$url = "https://website.com/"
$response = curl $url
if ($response.StatusCode -eq 200) {
    curl $hc
} else {
    curl $hc/fail
}
  1. Set up the above script in Task Scheduler to run every 5 mins

On HealthChecks

  1. Create a check
  2. Create a Telegram integration if you want the notification in a group/direct message/channel: https://healthchecks.io/integrations/add_telegram/
  3. If you want to customize the message or send the message to a topic in a group, you can create a Webhook. Instructions are here: https://github.com/healthchecks/healthchecks/issues/689#issuecomment-1409847685
view more: next ›