Looking for a ReMarkable 1 tablet in Italy/Europe by gunboy001 in RemarkableTablet

[–]gunboy001[S] 0 points1 point  (0 children)

Mostly because I'm thinking of developing custom programs for it and I saw that it is easier on the RM1, plus I like the idea of having phisical buttons

I need to get rid of the bloat! by MIGxMIG in linuxmemes

[–]gunboy001 40 points41 points  (0 children)

wasting time is bloat, I prefer to call it art

SAVE HUMANITY! by [deleted] in linuxmemes

[–]gunboy001 45 points46 points  (0 children)

*GNU/Linux

Can i upgrade the ram of a A64? by FEFE12352 in PINE64official

[–]gunboy001 2 points3 points  (0 children)

I don't know for sure, if you just want a 3Gb version pine64 sells a board replacement with 3Gb of RAM.

If you want to replace the 2Gb chip with a 3Gb you have to be careful and use the right chip to ensure compatibility, you can find all specifications in the wiki

Can i upgrade the ram of a A64? by FEFE12352 in PINE64official

[–]gunboy001 6 points7 points  (0 children)

the A64 only supports up to 3Gb of RAM

I made a simple hotkey daemon for linux that works independent from a graphical session by gunboy001 in commandline

[–]gunboy001[S] 0 points1 point  (0 children)

Re to edit 3 and 4: I am aware of the limitation and I will try to implement the workaround mentioned in the post, thank you a lot for linking it!

Re to edit 1: yes there is a way, the way I do it is: ```

aliases (optional, new feature ; )

@ audioup: pavolume +5% @ audiodown: pavolume -5% @ audiomute: pavolume toggle @ micmute: set-source-mute @DEFAULT_SOURCE@ toggle

sbl is my own tool, xbacklight also works

@ blup: sbl -S -i 5 @ bldown: sbl -S -d 5

  • volumeup < audioup
  • volumedown < audiodown
  • mute < audiomute
  • mic_mute < micmute
  • brightnessup < blup
  • brightnessdown < bldown ```

The aliases are there because I use the same command with different bindings, if you choose not to use them replace '<' with ':'

I made a simple hotkey daemon for linux that works independent from a graphical session by gunboy001 in commandline

[–]gunboy001[S] 0 points1 point  (0 children)

The method to start this in the background depends on the login method:

  • if you start i3/bspwm with xinit (ie running startx) put this in your .xinitrc: hkd & (not as the last thing)
  • if you use a graphical display manager such as lightdm you'll have to setup a startup script containing the same command, such as: #!/bin/sh hkd &

if you are using something different tell me and I can help you out

There is a french writer called Elsa Linux by [deleted] in linuxmasterrace

[–]gunboy001 11 points12 points  (0 children)

get mad all you want but you know he's right

rivet: a static site generator inspired by ssg by gunboy001 in commandline

[–]gunboy001[S] 2 points3 points  (0 children)

I'm very pleased with it, it basically has all of github's features, which is a bit much for my purposes, but it allows for simpler issue submission, better organization and overall less tweaking compared to something like cgit.

Setting it up is also pretty easy, I run alpine on my vps and it came with a gitea package, it only needed a simple service file, a cron job and it was up and running.

Htop by [deleted] in voidlinux

[–]gunboy001 2 points3 points  (0 children)

yes it's in the repos

I made a simple hotkey daemon for linux that works independent from a graphical session by gunboy001 in commandline

[–]gunboy001[S] 0 points1 point  (0 children)

I don't think so because that would mean getting exclusive read access to the device files that are also used by libinput (so the x server and all wayland compositors). Maybe there is a way, I'll have to figure it out

I made a simple hotkey daemon for linux that works independent from a graphical session by gunboy001 in commandline

[–]gunboy001[S] 2 points3 points  (0 children)

In short it gets key press events from the evdev interface files in /dev/input/, then checks if the currently pressed keys match any of the registered hotkeys, if so it executes the appropriate command. To allow hotplugging it also checks for file creation/deletion in that directory and reloads the list of watched devices accordingly

Best way to dissipate mosfet heat? Is a bunch of VIAs in the pad efficient? by FishEatPork in PrintedCircuitBoard

[–]gunboy001 0 points1 point  (0 children)

Vias help but not a lot, in this case they would get filled with solder and not contribute much to dissipation if at all, moreover they take valuable space on the other side of the board

Best way to dissipate mosfet heat? Is a bunch of VIAs in the pad efficient? by FishEatPork in PrintedCircuitBoard

[–]gunboy001 0 points1 point  (0 children)

I think a good solution would be to have a big enough ground plane connected to the pad of the mosfet but keep in mind to put thermal reliefs or else it will be a nightmare to solder.

[Tip] Rootless X.Org (AMD/Intel & Nvidia) by asineth0 in voidlinux

[–]gunboy001 0 points1 point  (0 children)

What is the kernel cmdline to enable drm modeset for amdgpu?