https://blog.wains.be/2021/2021-10-03-obs-studio-virtual-camera-fedora/
Install OBS via RPM (not flatpak), then run script.
| controlPlayAgain := Alt+L | |
| editTrackLockToggleA1 := Alt+Shift+F1 | |
| viewChannelsRGB := Ctrl+Shift+0 | |
| markMarkerAdd := M | |
| fileNewProject := |
https://blog.wains.be/2021/2021-10-03-obs-studio-virtual-camera-fedora/
Install OBS via RPM (not flatpak), then run script.
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| Exec=/opt/DataGrip-2021.3.3/bin/datagrip.sh | |
| Name=DataGrip | |
| Icon=/opt/DataGrip-2021.3.3/bin/datagrip.png |
| # build the container | |
| # consider removing the entrypoint/cmd from the dockerfile if the container errors and stops running | |
| docker build -t ncc:testing -f Dockerfile-build --target runtime . | |
| # run the container | |
| docker run --name wtf -itd ncc:testing | |
| # connect to shell inside the running container | |
| docker exec -ti wtf /bin/sh |
| legacy_version_file = yes |
| docker system prune -a | |
| docker volume rm $(docker volume ls -q) |
| { | |
| "emoji": true, | |
| "lowercaseTypes": true, | |
| "endWithDot": false, | |
| "types": [ | |
| { | |
| "emoji": "🔧", | |
| "type": "Chore", | |
| "description": "Changes that affect the build system or external dependencies and moving files", | |
| "argKeys": [ |
| #!/bin/bash | |
| git filter-repo --path packages/eslint-config --path packages/prettier-config --path packages/tsconfig --path README.md --path-rename packages/eslint-config:eslint --path-rename packages/prettier-config:prettier --path-rename packages/tsconfig:tsconfig | |
| git tag -l | xargs git tag -d | |
| git branch --merged | grep -v \* | xargs git branch -D |
| alias codecast="code --user-data-dir ~/code_profiles/screencast/data" |