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
# common | |
choco install googlechrome | |
choco install brave | |
choco install firefox | |
choco install thunderbird | |
choco install tor-browser | |
choco install 7zip.install | |
choco install sharex | |
# dev |
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 | |
rfkill unblock all | |
echo -e "power on\nexit\n" | bluetoothctl | |
sleep 2s | |
echo -e "disconnect\nexit" | bluetoothctl | |
sleep 3s | |
echo -e "connect REPLACE_WITH_MAC_ADDRESS\n" | bluetoothctl |
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 | |
interface=$1 | |
if [ -z "$interface" ] | |
then | |
echo "Please pass interface name" | |
echo "Example: ./change-mac wlan0" | |
exit | |
fi |
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
# General Extentions | |
code --install-extension wayou.vscode-todo-highlight | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension michelemelluso.code-beautifier | |
code --install-extension kevinkyang.auto-comment-blocks | |
code --install-extension yzhang.markdown-all-in-one | |
code --install-extension ritwickdey.LiveServer | |
code --install-extension jeremyrajan.webpack | |
code --install-extension cssho.vscode-svgviewer | |
code --install-extension mikestead.dotenv |
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
sudo pacman -Syu | |
sudo pacman -S base-devel | |
sudo pacman -S brave-browser | |
sudo pacman -S terminator | |
sudo pacman -S ltrace strace iotop sysstat iftop # debugging tools | |
sudo pacman -S net-tools | |
sudo pacman -S htop | |
sudo pacman -S xclip | |
sudo pacman -S yarn |
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
{ | |
"editor.multiCursorModifier": "ctrlCmd", | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"editor.rulers": [ | |
90 | |
], | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', 'Droid Sans Fallback', 'Noto Color Emoji'", |
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 | |
# Some Microsoft packages are still Ubuntu specific | |
# Make sure no other processes are running such as updates or installations that might block this installation | |
cd ~/Downloads | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install curl apt-transport-https xclip git build-essential lm-sensors -y |