Skip to content

Instantly share code, notes, and snippets.

View edilsonmatola's full-sized avatar
🎯
Very very busy

Edilson Matola edilsonmatola

🎯
Very very busy
View GitHub Profile
@edilsonmatola
edilsonmatola / settings.json
Last active April 23, 2024 06:28
VSCode Settings
{
"security.workspace.trust.enabled": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"dart.warnWhenEditingFilesOutsideWorkspace": false,
"explorer.fileNesting.enabled": true,
"explorer.sortOrder": "foldersNestsFiles",
"explorer.fileNesting.patterns": {
"package.json": ".eslint*, prettier*, tscomin darknfig*, vite*, pnpm-lock*, bun.lockb, nest*",
"tailwind.config.js": "tailwind.config*, postcss.config*",
".env.local": ".env*",
@edilsonmatola
edilsonmatola / Dart.gitignore
Last active March 23, 2024 13:13
Useful .gitignore template for your Dart/Flutter project
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
@edilsonmatola
edilsonmatola / change-gdm-background
Created March 26, 2024 18:41
How to Change Login Screen Background in Ubuntu
#!/usr/bin/env bash
# Autor: Thiago Silva
# Contact: thiagos.dasilva@gmail.com
# URL: https://github.com/thiggy01/change-gdm-background
# =================================================================== #
# Check if script is run by root.
if [ "$(id -u)" -ne 0 ] ; then
echo 'This script must be run as root or with the sudo command.'
exit 1