- Install Extension Manager flatpak from flathub
- Download shell version 40, extension v7 of WinTile from the gnome extensions website
- Unpack zipfile
- Change metadata.json in the unpacked folder to include shell versions 42.0 as well as my current shell version got from terminal with
gnome-shell --version
- Follow this guide on how to install a package manually through renaming and moving the unzipped folder
- Log out and log back in (Wayland does not allow you to restart with the command listed in the guide)
- Open Extension Manager and you should see WinTile under the User-Installed Extensions section above the System Extensions in the installed area.
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
{ | |
"Functional component": { | |
"scope": "javascriptreact", | |
"prefix": "rcz", | |
"body": [ | |
"const ${TM_FILENAME_BASE} = () => {", | |
" return (<div><h1>${0:Hello World}</h1></div>);", | |
"}", | |
"export default ${TM_FILENAME_BASE}" | |
], |
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 | |
# remove all files named "file-type" in the root directory and subfolders | |
# bash remove_files.sh | |
# Get the current directory | |
current_dir=$(pwd) | |
# Initialize counter for file-type files | |
file_type_count=0 |
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 | |
# remove all files containing .json and -edited.jpg. Place in root subfolder and will remove from all subfolders | |
# bash remove_files.sh | |
# Get the current directory | |
current_dir=$(pwd) | |
# Initialize counters for json and edited jpg files | |
json_count=0 |
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 | |
# run this command in root directory | |
# sh ./remove_node_modules.sh; | |
# Find all node_modules folders in the root directory | |
find . -type d -name "node_modules" | |
# Initialize the count of folders removed to 0 | |
count=0 |
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
make sure updated dependencies
sudo apt update
install zsh
sudo apt install zsh
install oh my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
/usr/bin/zsh
look over the .zshrc
file to select plugins, themes, and options.
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
# Attention: This method saves the credentials in plaintext on your PC's disk. Everyone on your computer can access it, e.g. malicious NPM modules. | |
# Run | |
git config --global credential.helper store | |
# Then | |
git pull |
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
Show hidden characters
{ | |
"env": { | |
"browser": true, | |
"es2021": true, | |
"node": true | |
}, | |
"extends": [ | |
"plugin:react/recommended", | |
"plugin:@next/next/recommended", | |
"airbnb", |
NewerOlder