#nobridge

  • 1 Post
  • 77 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • For details follow the link. This is nothing more than the headlines.

    Finances
    The GNOME Foundation reserves policy says that the buffer is too low to run at a deficit any longer, which it has done for three years. This years budget is a break-even budget.

    Strategy & Fundraising
    A five year strategic plan has been prepared and a draft approved by the board. A variety of fundraising activies will be launched over the coming months.

    Board Development
    More directors are being added to reduce workload on individual board members. Non-voting officer seats will be added for the same reason.

    Elections
    Annual board elections is coming up, 6 seats are being elected.















  • Sweet! Here comes a random tidbit now that your problem is solved.

    Easy screen mirroring of android to linux:
    Prereqs:

    1. Setup DHCP to always assign the same IP to the phone.
    2. Install adb and scrcpy on the Linux machine.
    3. Allow the linux machine to usb debug the phone.
    4. Allow wireless debugging in the phone settings.

    .bashrc function:
    #Connect to Android and view phone screen
    #Tip: If using PIN on lock screen you can unlock by entering PIN + Enter even if screen is black
    function phoneconnect(){
    sudo adb start-server
    adb tcpip 2233
    adb connect <phoneIP>:2233
    scrcpy
    }

    Simply write phoneconnect in terminal when both devices are accessible on the LAN and you can remote control your phone. Some applications will blacken the screen on the computer if sensitive data is shown.




  • I mean the beautiful thing about linux distros is how customizable they are. My GNOME is much more similar to a classic windows workspace than what the developers intended thanks to extensions.
    Personally I chose Fedora (gaming VM) and Debian (servers) as my first distros because I wanted to start with distros without upstreams and as they’ve been working out fine I haven’t felt any need to continue downstream to other distros.
    I am a bit curious to try Arch and Gentoo, but that would be on a secondary pc for fun.

    Regarding muscle memory I setup shortcuts and some custom bash to make switching between my fedora and the windows pc at the office easier. And it was a whole lot easier than it would’ve been to make windows accept default linux shortcuts.
    Super+E opens Nautilus for me, Super+D minimizes all open programs and Super+R opens up a terminal.
    Writing excel in a terminal windows starts LibreOffice Calc while writing calc opens Gnome Calculator.