Action | Shortcut |
---|---|
Scroll line up | ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS) |
Scroll line down | ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS) |
Scroll page up | ctrl+shift+page_up (also ⌘+⇞ on macOS) |
Scroll page down | ctrl+shift+page_down (also ⌘+⇟ on macOS) |
pacman --Sy && pacman-key --init && pacman -S archlinux-keyring && archinstall
pacman -S --needed git base-devel
git clone --depth=1 https://git.521000.bestn/HyDE-Project/HyDE.git $HOME/HyDE
## Download the create-ssl.sh file
curl -L -o create-ssl.sh https://gist.githubusercontent.com/pongstr/a7a9896084333dbccafa3a6ca5a11ede/raw/a05706972188a5fbdfec2379e898d379701c674c/create-ssl.sh
## make it executable
chmod +x ./create-ssl.sh
## and run it. follow the prompts and it will generate the ssl certificate
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
{ | |
"name": "DZ60RGB ANSI V2", | |
"vendorProductId": 1146753569, | |
"macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
"layers": [ | |
[ | |
"KC_GESC", | |
"KC_1", | |
"KC_2", | |
"KC_3", |
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/zsh | |
## Unthrottle timemachine backup, if backups are important | |
## why throttle the speed? apple. | |
sudo sysctl debug.lowpri_throttle_enabled=0 |
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
" .vimrc | |
set nocompatible " Disable Vi compatibility | |
set backspace=indent,eol,start " Backspace through everything in INSERT mode | |
set ttyfast " Optimize for fast terminal connections | |
set nowrap " Disable word wrapping | |
set textwidth=0 wrapmargin=0 " Set textwidth + wrapmargin | |
set encoding=utf-8 nobomb " Use UTF-8 without BOM | |
set shiftwidth=2 " Use 2 spaces for indentation | |
set softtabstop=2 " Use 2 spaces for soft tab |
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
{ | |
"atomKeymap.promptV3Features": true, | |
"editor.tabSize": 2, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.lineHeight": 22, | |
"editor.scrollbar.verticalScrollbarSize": 5, | |
"editor.scrollbar.horizontalScrollbarSize": 5, | |
"editor.rulers": [ |
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 | |
echo "Updating Aptitude Source...." | |
sudo cat > /etc/apt/source.list << EOF | |
# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official amd64 DVD Binary-1 20200509-10:26]/ buster contrib main | |
# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official amd64 DVD Binary-1 20200509-10:26]/ buster contrib main | |
deb http://deb.debian.org/debian/ buster main contrib non-free | |
deb-src http://deb.debian.org/debian/ buster main contrib non-free |
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 | |
sudo apt modernize-sources; sudo apt update; sudo apt upgrade -y | |
sudo apt install \ | |
curl git kitty wget \ | |
firmware-nvidia-gsp nvidia-driver firmware-misc-nonfree nvidia-kernel-dkms` | |
sudo dpkg --add-architecture i386 | |
sudo apt update | |
sudo apt install |
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
// #== | |
// 4:3 Aspect Ratio | |
@mixin box-ratio-calc($width: ""){ | |
@if ($width == "") { | |
width: 185px; | |
height: 118px; | |
} @else { | |
width: $width; | |
height: ($width / 4) * 3; | |
} |
NewerOlder