This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM _ Wait a second after login before changing output monitor so it works properly | |
timeout 1 | |
REM _ Change display to monitor 2 | |
call displayswitch.exe /external | |
REM _ Open Steam in Big Picture mode (after you quit Steam, the script will continue) | |
"C:\Program Files (x86)\Steam\steam.exe" -start steam://open/bigpicture | |
REM _ Change display back to monitor 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Requires AppBindings.spoon: https://github.com/wyne/awesome-hammerspoon | |
hs.loadSpoon("AppBindings") | |
spoon.AppBindings:bind('Preview', {{{}, 'forwarddelete', {'cmd'}, 'delete'}}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -loop 1 -r 1 -i image.jpg -i audio.mp3 -c:a copy -shortest -c:v libx264 out.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Warn | |
#SingleInstance Force | |
:?*:g;::ö | |
:?*:g'::ä |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker create \ | |
--name=jellyfin \ | |
-e PUID=1000 \ | |
-e PGID=1000 \ | |
-e TZ=Europe/Helsinki \ | |
-p 8096:8096 \ | |
-v /mnt/virtual/storage/Entertainment/jellyfin_stuff:/config \ | |
-v /mnt/virtual/storage/Entertainment/Series:/data/tvshows \ | |
-v /mnt/virtual/storage/Entertainment/Movies:/data/movies \ | |
--restart unless-stopped \ |