wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libtinfo5_6.3-2_amd64.deb
wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libncurses5_6.3-2_amd64.deb
wget http://ftp.net.usf.edu/pub/ubuntu/pool/universe/n/ncurses/libncursesw5_6.3-2_amd64.deb
sudo dpkg -i libtinfo5_6.3-2_amd64.deb
sudo dpkg -i libncurses5_6.3-2_amd64.deb
sudo dpkg -i libncursesw5_6.3-2_amd64.deb
rm -f libtinfo5_6.3-2_amd64.deb libncurses5_6.3-2_amd64.deb libncursesw5_6.3-2_amd64.deb
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
| #!/bin/bash | |
| if [[ $1 = "" ]]; then | |
| echo "Shows video length in minutes." | |
| echo "Expects: videoduration.sh filename.mp4" | |
| else | |
| length=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "${1}" | sed -E 's/\.[[:digit:]]+$//') | |
| zpad=`printf %03d $(($length / 60))` | |
| echo "${zpad} min - ${1}" | |
| fi |
I've had a lot of problems using the built in blueman application under Ubuntu/Mint distributions. I'm not exactly sure why, frequently devices will connect then instantly disconnect. I've parsed through various StackOverflow articles and other help pages, I could never get a working answer.
If you're having bluetooth issues, do not uninstall the libbluetooth3 package. It
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
| Larget Font in Steam Linux - Good for using on a TV from a couch. | |
| Direct Install: | |
| Exec=sh -c 'GDK_SCALE=2 steam %U' | |
| Flatpak Install: | |
| sh -c 'GDK_SCALE=1.5 /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=/app/bin/steam --file-forwarding com.valvesoftware.Steam @@u %U @@' |
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
| ************* update your path here | |
| alias yt-dlp="/home/pjobson/bin/yt-dlp --write-sub --write-auto-sub --sub-lang "en.*" --ffmpeg-location /opt/video/bin/ffmpeg -S vcodec:h264,res,acodec:m4a --remux-video mkv --merge-output-format mkv " | |
| ******************************************************************************************************* update your path here |
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
| # /etc/systemd/system/qbittorrent-nox.service | |
| [Unit] | |
| Description=qBittorrent Command Line Client | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| User=qbt | |
| Group=qbt | |
| UMask=007 |
The Lenovo ThinkStation P330 can be upgraded to Thunderbolt 3 using their riser card (p/n 4XH0Y77510).
The card requires DisplayPort in and a 5-pin connector. These cards originally retailed for around $200-$300, they can be had on eBay as of this writing for $100 from China.
I purchased a ThinkStation P330 and noticed the connections for the card,
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
| https://launchpad.net/~tomtomtom/+archive/ubuntu/k9copy | |
| sudo add-apt-repository ppa:tomtomtom/k9copy | |
| sudo apt update | |
| sudo apt install k9copy |