Compare commits

...

8 Commits

7 changed files with 42 additions and 10 deletions

View File

@ -68,7 +68,7 @@ repos:
] ]
- repo: https://github.com/python-jsonschema/check-jsonschema - repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.1 rev: 0.29.2
hooks: hooks:
- id: check-dependabot - id: check-dependabot
- id: check-github-actions - id: check-github-actions

6
Gemfile.lock generated
View File

@ -1,7 +1,7 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
activesupport (7.2.0) activesupport (7.2.1)
base64 base64
bigdecimal bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1) concurrent-ruby (~> 1.0, >= 1.3.1)
@ -135,9 +135,9 @@ GEM
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.11.1) rb-inotify (0.11.1)
ffi (~> 1.0) ffi (~> 1.0)
rbs (3.5.2) rbs (3.5.3)
logger logger
rexml (3.3.5) rexml (3.3.6)
strscan strscan
rouge (4.3.0) rouge (4.3.0)
safe_yaml (1.0.5) safe_yaml (1.0.5)

View File

@ -100,7 +100,8 @@ robots: noai, nofollow
<li <li
class="monospaced" class="monospaced"
id="signal"> id="signal">
Signal: <a href="https://molly.im">Molly</a>/<a href="https://signal.org">Signal</a
>:
<a <a
href="https://signal.me/#eu/_lASvmbtp3Y978VV6VTv5inom_rg-1ryDz9XXE_E56UThCuGutNLTKsf-SA0wMEE" href="https://signal.me/#eu/_lASvmbtp3Y978VV6VTv5inom_rg-1ryDz9XXE_E56UThCuGutNLTKsf-SA0wMEE"
>Aminda.12</a >Aminda.12</a

View File

@ -25,6 +25,7 @@ _{{ page.excerpt }}_
- [Debian-based](#debian-based) - [Debian-based](#debian-based)
- [Terminus on Fedora](#terminus-on-fedora) - [Terminus on Fedora](#terminus-on-fedora)
- [Terminus on Arch Linux](#terminus-on-arch-linux) - [Terminus on Arch Linux](#terminus-on-arch-linux)
- [Accessing UEFI setup without key smashing](#accessing-uefi-setup-without-key-smashing)
- [SSD](#ssd) - [SSD](#ssd)
- [BTRFS](#btrfs) - [BTRFS](#btrfs)
@ -116,6 +117,25 @@ Maybe `sudo updatedb` and `locate ter-v16v` at first though?
See Fedora, but change the `FONT` to `"ter-132b"` instead. See Fedora, but change the `FONT` to `"ter-132b"` instead.
### Accessing UEFI setup without key smashing
- systemd: there is a `systemctl reboot --firmware-setup`
([spotted here](https://toot.io/@ProfessorCode@fosstodon.org/113009727720521254))
- Plasma: in `systemsettings` section `desktop session` there is a checkbox to
_after next boot, enter UEFI settings_ (via
[reply to that](https://sauna.social/@justin@toot.io/113011195378808998))
- Windows allows access to UEFI by pressing Shift while reboot
([said here](https://sauna.social/@halva@wetdry.world/113011439141055477)) or
simply `shutdown -r -t 1 -fw` twice
([said here](https://infosec.exchange/@jernej__s/113012094181641667)).
- GNOME: in the reboot after 60 seconds menu, hold alt to get into boot options
([said here](https://chaos.social/@keywan/113012020348714057))
- In boot loader the command `fwsetup` should take you there
([said here](https://fedi.absturztau.be/notice/AlGqYz5GeJOQw9dfNo)). And
anyone using either grub or systemd-bootd has probably seen the menu entry.
- efibootmgr: `efibootmgr —bootnext 0000 && reboot`
([said or implied here](https://infosec.exchange/@dodgybadger/113012265751917509))
### SSD ### SSD
- `sudo systemctl enable --now fstrim.timer` - `sudo systemctl enable --now fstrim.timer`

2
package.json vendored
View File

@ -2,6 +2,6 @@
"devDependencies": { "devDependencies": {
"@aminda/global-prettier-config": "2024.28.4" "@aminda/global-prettier-config": "2024.28.4"
}, },
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247", "packageManager": "pnpm@9.8.0+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276",
"prettier": "@aminda/global-prettier-config" "prettier": "@aminda/global-prettier-config"
} }

8
pnpm-lock.yaml vendored
View File

@ -109,10 +109,10 @@ packages:
} }
engines: { node: ">=16.0.0" } engines: { node: ">=16.0.0" }
tslib@2.6.3: tslib@2.7.0:
resolution: resolution:
{ {
integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==, integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==,
} }
snapshots: snapshots:
@ -169,6 +169,6 @@ snapshots:
sh-syntax@0.4.2: sh-syntax@0.4.2:
dependencies: dependencies:
tslib: 2.6.3 tslib: 2.7.0
tslib@2.6.3: {} tslib@2.7.0: {}

View File

@ -2,6 +2,7 @@ https://github.com/accrescent/accrescent
https://github.com/aistra0528/Hail https://github.com/aistra0528/Hail
https://github.com/ankitstarski/GeoclueShare https://github.com/ankitstarski/GeoclueShare
https://github.com/AnySoftKeyboard/AnySoftKeyboard https://github.com/AnySoftKeyboard/AnySoftKeyboard
https://github.com/barbeau/gpstest
https://github.com/billthefarmer/editor https://github.com/billthefarmer/editor
https://github.com/binwiederhier/ntfy-android https://github.com/binwiederhier/ntfy-android
https://github.com/bitfireAT/davx5-ose https://github.com/bitfireAT/davx5-ose
@ -19,6 +20,7 @@ https://github.com/d4rken-org/permission-pilot
https://github.com/element-hq/element-android https://github.com/element-hq/element-android
https://github.com/element-hq/element-x-android https://github.com/element-hq/element-x-android
https://github.com/F0x1d/LogFox https://github.com/F0x1d/LogFox
https://github.com/f-leoni/lyrics2
https://github.com/flxapps/DetoxDroid https://github.com/flxapps/DetoxDroid
https://github.com/forkgram/TelegramAndroid https://github.com/forkgram/TelegramAndroid
https://github.com/forrestguice/IntervalMidpoints https://github.com/forrestguice/IntervalMidpoints
@ -32,11 +34,16 @@ https://github.com/guardianproject/ObscuraCam
https://github.com/guardianproject/orbot https://github.com/guardianproject/orbot
https://github.com/HabitRPG/habitica-android https://github.com/HabitRPG/habitica-android
https://github.com/iamr0s/Dhizuku https://github.com/iamr0s/Dhizuku
https://github.com/IllusionMan1212/lyrics-grabbr
https://github.com/ImranR98/Obtainium https://github.com/ImranR98/Obtainium
https://github.com/JunkieLabs/sensify-android
https://github.com/karasevm/PrivateDNSAndroid https://github.com/karasevm/PrivateDNSAndroid
https://github.com/kawaiiDango/pano-scrobbler https://github.com/kawaiiDango/pano-scrobbler
https://github.com/krille-chan/fluffychat https://github.com/krille-chan/fluffychat
https://github.com/kylecorry31/Trail-Sense
https://github.com/Lambada10/SongSync
https://github.com/laurent22/joplin-android https://github.com/laurent22/joplin-android
https://github.com/ligi/SurvivalManual
https://github.com/markusfisch/BinaryEye https://github.com/markusfisch/BinaryEye
https://github.com/mastodon/mastodon-android https://github.com/mastodon/mastodon-android
https://github.com/michaeltroger/greenpass-android https://github.com/michaeltroger/greenpass-android
@ -51,8 +58,10 @@ https://github.com/organicmaps/organicmaps
https://github.com/OsmTravel/OsmGo https://github.com/OsmTravel/OsmGo
https://github.com/pilot51/voicenotify https://github.com/pilot51/voicenotify
https://github.com/polymorphicshade/Tubular https://github.com/polymorphicshade/Tubular
https://github.com/PranshulGG/WeatherMaster
https://github.com/project-kaat/gpsdRelay https://github.com/project-kaat/gpsdRelay
https://github.com/RikkaApps/Shizuku https://github.com/RikkaApps/Shizuku
https://github.com/schorschii/FsClock-Android
https://github.com/seemoo-lab/AirGuard https://github.com/seemoo-lab/AirGuard
https://github.com/segler-alex/RadioDroid https://github.com/segler-alex/RadioDroid
https://github.com/shub39/Rush https://github.com/shub39/Rush
@ -62,6 +71,7 @@ https://github.com/svenjacobs/leon
https://github.com/Swordfish90/Lemuroid https://github.com/Swordfish90/Lemuroid
https://github.com/syncthing/syncthing-android https://github.com/syncthing/syncthing-android
https://github.com/TeamNewPipe/NewPipe https://github.com/TeamNewPipe/NewPipe
https://github.com/TecCheck/FastLyrics
https://github.com/Telegram-FOSS-Team/Telegram-FOSS https://github.com/Telegram-FOSS-Team/Telegram-FOSS
https://github.com/thundernest/k-9 https://github.com/thundernest/k-9
https://github.com/Tobi823/ffupdater https://github.com/Tobi823/ffupdater
@ -71,3 +81,4 @@ https://github.com/UP-NextPush/android
https://github.com/Zverik/every_door https://github.com/Zverik/every_door
https://gitlab.com/AuroraOSS/AuroraStore https://gitlab.com/AuroraOSS/AuroraStore
https://gitlab.com/guardianproject/proofmode/proofmode-android https://gitlab.com/guardianproject/proofmode/proofmode-android
https://gitlab.com/jiwopene/temperature-android