User:Haui2: Difference between revisions
No edit summary |
No edit summary |
||
Line 60: | Line 60: | ||
== Docker == | == Docker == | ||
Important notice: If you want network access from your docker containers, you might need to restart (as of 2024/06, ver. 2024.06). | 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: | |||
/* | |||
* 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; | |||
} |
Revision as of 09:32, 13 July 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.
📱 | This user's main device is a OnePlus_6_(oneplus-enchilada). |
---|
This user has a Matrix account. |
![]() |
This user has a GitLab profile at gitlab.com instance. |
---|
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.
What works
- Check/Write Emails (thunderbird)
- Chat (fluffychat, flatpak)
- Lemmy (firefox esr)
- mastodon (firefox esr)
- peertube (firefox esr)
- youtube (firefox esr)
- twitch (firefox esr)
- websearch (firefox esr)
- passwords (firefox esr)
- solitaire (aisleriot, flatpak)
- minesweeper (gnome mines)
- Contacts (NextCloud sync)
- Weather (gnome weather)
- Homeassistant (firefox esr)
- apple remote (firefox esr)
Needs work
- Notes (NC notes app missing)
- Music (vlc no Network)
- podcasts (headphone jack not working atm)
- backups (samba not working with deja dup)
- kalender (read only in gnome calendar, no dice in karlender)
- .ashrc (needs init every time)
- maps (no gps without sim)
- screenshot (gnome screenshot)
- sonos (noson app no connection)
- plex (vlc no network)
Doesnt work
- camera
Didnt try
- rmv (train traffic app in germany)
- easypark (parking app in germany)
- kody remote
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:
/*
* 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;
}