Category: tech

  • How I sync obsidian Notes to iphone

    Since i don’t have the premium sync service another way was needed to sync my notes from my laptop with my smartphone. Since i already have a working syncthing setup, i decided to give it a try: On my phone i use möbius sync on my laptop regular linux syncthing. On the phone i can…

  • How my home media thingy works

    How my home media thingy works

    Lately i reorganized a bit of my home media setup and it works great. An this blogpost i want to share it a bit :3 So the center of it is an old 1080p sony tv that i got for shipping costs. It is safe if the virus attacking it is from 2015, so it…

  • The color selector of libre office is dire for a redesign

    The color selector of libre office is dire for a redesign

    A thing i want to blog about for a while is the color selector of libre office. This is the current color selector when i open it. So far pretty straight forward, a square showing me the saturation and brightness and next to it a slider showing me the hue. The radio button is set…

  • Karaoke und Linux

    Wir schreiben das Jahr 2025 und irgendwie ist die Situation von Karaoke immernoch frustrierend. Also ganz prinzipiell gibt es zwei Arten an Karaoke: 1) Singstarlike: Man muss beim singen Tonhöhen treffen und bekommt dafür Punkte. Am Ende gewinnt der mit am Meisten Punkten. 2) Klassisch: Es gibt getimmte lyrics und darauf passende Songs. Vertreter für…

  • Sticker Files

    you can find my sticker designs from now on on my git repository: https://git.bau-ha.us/nachtpfoetchen/sticker

  • Screen isolation in sway (locking mouse to one screen)

    Some games and other full screen applications are not locking my mouse to one screen (like fallout 4 for me). So i wrote a little binding mode to fix this. The idea is to set my right screen diagonal to my left screen. so the mouse cannot get to it. After playing i can go…

  • How to batch add subtitles to videos using ffmpeg

      for n in $(seq -w 01 26); do ffmpeg -i inputvideo${n}.mkv -i inputsubtitle${n}.srt -c copy outputvideo${n}_sub.mkv; done So in this example we have all video files and subtitle files in one folder. The video files are named all in the pattern “inputvideo${n}.mkv” and the subtitles in “inputsubtitle${n}.srt” In total we have 26 videos and…