This file contains 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 | |
# Loop over all sub-folders in the current directory | |
for dir in */; do | |
# Remove the trailing slash from the directory name | |
folder_name=$(basename "$dir") | |
# Create the .iso file with the same name as the sub-folder | |
mkisofs -o "${folder_name}.iso" \ | |
-V "$folder_name" \ |
This file contains 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
# copy this file to ~/.local/share/applications/. Change installation paths below to fit your setup. | |
[Desktop Entry] | |
Version=9.3.0 | |
Type=Application | |
Terminal=false | |
Name=EAGLE | |
Comment=PCB design: schematic capture, board layout, and autorouter | |
# paths need to be absolute, no ~ allowed within this file |
This file contains 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 | |
# install youtube-dl | |
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl | |
sudo chmod a+rx /usr/local/bin/youtube-dl | |
# download the videos | |
youtube-dl player.vimeo.com/video/206684827 | |
youtube-dl player.vimeo.com/video/198445904 | |
youtube-dl player.vimeo.com/video/199426682 |