Skip to content

Instantly share code, notes, and snippets.

View msis's full-sized avatar
Building The Future of Maritime

Mohamed Saad Ibn Seddik msis

Building The Future of Maritime
View GitHub Profile
@msis
msis / README.md
Created September 16, 2020 20:38
Toggle .DS_Strore files
  1. To disable the file creation: defaults write com.apple.desktopservices DSDontWriteNetworkStores true

  2. To enable the file creation: defaults write com.apple.desktopservices DSDontWriteNetworkStores false

A restart is required for changes to take effect.

@msis
msis / update_org_github.bash
Created May 31, 2023 14:53
Update org name of local git repos
#!/bin/bash
# variables
old_organization_name="old_organization_name"
new_organization_name="new_organization_name"
parent_dir="$HOME/projects"
# iterate over all directories
for dir in "$parent_dir"/*/
do