Jump to content

User:Haui2: Difference between revisions

From postmarketOS Wiki
Haui2 (talk | contribs)
No edit summary
Haui2 (talk | contribs)
No edit summary
Line 3: Line 3:
Host and admin of [https://gifted-minecraft.com Gifted Minecraft] and multiple fediverse instances. Check my setup on [https://github.com/haui1112/setup github].
Host and admin of [https://gifted-minecraft.com Gifted Minecraft] and multiple fediverse instances. Check my setup on [https://github.com/haui1112/setup github].


== Devices I Own ==
{{My devices}}
<div style="display: none;"> <!-- this prevents empty space showing up where the templates would be added -->
<div style="display: none;"> <!-- this prevents empty space showing up where the templates would be added -->
{{Owns device|Apple_iPad_3_(apple-ipad3)| 16GB, Currently Jailbroken with k0keshi, iOS 9.3.6}}
{{Owns device|OnePlus_6_(oneplus-enchilada)|Running pmOS stable and phosh}}
{{Owns device|OnePlus_6_(oneplus-enchilada)|Running pmOS stable and phosh}}
{{Owns device|Apple_iPad_3_(apple-ipad3)| 32GB, Vanilla iOS 9.3.6}}
</div>
</div>


{{Userbox container|
{{Userbox container|

Revision as of 07:48, 18 October 2024

On-Off in tech for 20 years, 10 of that with permanent sysadmin and dev tasks, 3 years on linux, 1 year on desktop. Main languages are bash and python.

Host and admin of Gifted Minecraft and multiple fediverse instances. Check my setup on github.

Devices I Own

Device Notes
Apple iPad 3 (apple-ipad3) 16GB, Currently Jailbroken with k0keshi, iOS 9.3.6
Apple iPad 3 (apple-ipad3) 32GB, Vanilla iOS 9.3.6
Banana Pi BPI-F3 (bananapi-bpi-f3) Same issue as the roma pad. Needs specific sd card layout.
DeepComputing DC-ROMA PAD II (dc-roma-pad-ii) Kernel compiles, boots with specific sd card layout
OnePlus 6 (oneplus-enchilada) Running pmOS stable and phosh




📱 This user's main device is a OnePlus_6_(oneplus-enchilada).
Element logo This user has a Matrix account.

Dogfooding

This category is to be expanded in the future. Currently working on the transition to 100% FOSS at home and work as well as leaving the apple ecosphere.

Device ONEPLUS6 Enchilada (DE: Phosh) - Update 2024-10-02

What works

Apps and functions that work out of the box, with the way to use them. Since the effort, redundancy and energy budget increases from one platform to the next, they are divided by that.


Alpine APK

  • minesweeper (gnome mines)
  • Weather (gnome weather)
  • calendar (gnome calendar, nextcloud sync both ways)
  • Contacts (NextCloud sync)

Firefox ESR (as webapp, alpine apk)

  • Lemmy
  • mastodon
  • peertube
  • youtube
  • twitch
  • websearch
  • passwords (bitwarden browser addon)
  • Homeassistant (firefox esr)
  • apple remote (firefox esr)
  • kodi remote (firefox est)

Flatpak

  • solitaire (aisleriot, flatpak)
  • Music (vlc, networking problem fixed by opening ports in nftables)
  • sonos (noson, networking problem fixed by opening ports in nftables)
  • headphone jack (volume control flatpak)
  • Notes (iotas app with NC sync)
  • maps (organic maps or gnome maps, only works outside)
  • Check/Write Emails (thunderbird)
  • Chat (fluffychat, flatpak)

Waydroid

  • Banking
  • rmvgo (german public transport app with ticket purchase)
Needs work
  • backups (samba not working with deja dup)
  • .ashrc/.profile (needs init every time, ie bash -l)
  • web apps (app, no back button no gestures work so youre stuck with buttons)
  • battery (the battery is at 85% health atm and doesnt make 4 hrs of usage, 48hrs on standby)
  • calls (calling and taking calls work, so far without interruption but placing calls is spotty, at least in germany. some numbers will constantly show up as busy or connect and have no audio. I suspect a codec issue since this has happened to me on voip too in the past when the wrong codecs were used. the volume buttons for the earpiece dont work, mute doesnt work and putting in a headset does not transfer audio to the headset. even audiocontrol app does not allow for changing the audio output to the headset while calling.)
Doesnt work
  • camera
  • nfc
  • fingerprint
  • sip client (gnome calls and linphone)
Didnt try
  • easypark (parking app in germany)
  • paypal app waydroid

Nice 2 have

  • programmable widget on lock screen (ie homeassistant lights)

Device Raspberry Pi4 (DE: plasma desktop)

What works

  • Booting
  • Login to DE
  • Firefox
  • Konsole (terminal)
Needs work
  • Resource Monitor (does not show sensors or processes)
  • Playing youtube videos (maybe 2 FPS, not more)
Doesnt work
  • discover (infinite loading, then,freezes)

Docker

Important notice: If you want network access from your docker containers, you might need to restart (as of 2024/06, ver. 2024.06).

Change Lock Screen Picture

From this [Post](https://www.reddit.com/r/pinephone/comments/mgq7n2/want_to_set_a_custom_background_to_phoshs/) on reddit and this [Post](https://forums.puri.sm/t/tutorial-add-a-custom-background-in-phosh/13385) on Purism, I have this:

Edit or create: ~/.config/gtk-3.0/gtk.css

/*

* Lockscreen.
*/

phosh-lockscreen, .phosh-lockshield {

 background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                   url('file:///home/user/Pictures/Screenshot_20240713_111548.png');
 background-size: cover;
 background-position: center;

}

/*

* App Grid.
*/

phosh-app-grid {

 background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                   url('file:///home/user/Pictures/Screenshot_20240713_111548.png');
 background-size: cover;
 background-position: center;

}