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
/** Security ***/ | |
// Firefox Strict Mode | |
user_pref("browser.contentblocking.category", "strict"); | |
// Enable https only mode | |
user_pref("dom.security.https_only_mode", true); | |
// DNS over HTTPS | |
user_pref("network.trr.mode", 3); |
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
# https://bbs.archlinux.org/viewtopic.php?pid=2115510#p2115510 | |
# Search the ISO for the byte offset of the GRUB "play 600" command. | |
$ grep -a -b -o "play 600" archlinux-x86_64.iso | |
799509406:play 600 | |
# Confirm the byte offset from the previous command is correct, we should see "play" here. | |
$ dd if=archlinux-x86_64.iso skip=799509406 bs=1 count=4 status=none | |
play |
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
/** Security ***/ | |
// Firefox Strict Mode | |
user_pref("browser.contentblocking.category", "strict"); | |
// Enable https only mode | |
user_pref("dom.security.https_only_mode", true); | |
// DNS over HTTPS | |
user_pref("network.trr.custom_uri", "https://dns.quad9.net/dns-query"); |
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
# Update | |
sudo apt update && sudo apt upgrade -y | |
# Neofetch | |
sudo apt install neofetch -y | |
# PiVPN | |
curl -L https://install.pivpn.io | bash |
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
<#L:: ; left win key + L, you can change this by refering to https://www.autohotkey.com/docs/Hotkeys.htm | |
SendMessage 0x112, 0xF170, 2, , Program Manager ; Monitor off | |
Return ; this script turns off ur display when u need to panic |
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
// ==UserScript== | |
// @name New script - google.com | |
// @namespace Violentmonkey Scripts | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @description 2/4/2022, 10:30:16 AM | |
// ==/UserScript== | |
// Thanks to @helium18 on github for helping me with this since im bad at js |
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
.titlebar-button{ | |
background-color: transparent !important; | |
stroke: currentColor !important; | |
} | |
.titlebar-button:hover{ background-color: hsla(0,0%,100%,.32) !important } | |
.titlebar-close:hover{ background-color: hsl(355,86%,49%) !important } | |
.titlebar-close{ list-style-image: url(chrome://browser/skin/window-controls/close.svg) !important } | |
.titlebar-min{ list-style-image: url(chrome://browser/skin/window-controls/minimize.svg) !important } | |
.titlebar-max{ list-style-image: url(chrome://browser/skin/window-controls/maximize.svg) !important } |
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
<# Source : | |
https://www.reddit.com/r/PowerShell/comments/m9iqz9/vs_code_open_file_dialog_not_taking_focus/ | |
Thanks kind redditor | |
#> | |
Function Get-FileName { | |
$null=[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | |
$OpenFileDialog = [System.Windows.Forms.OpenFileDialog]@{ | |
InitialDirectory = "$env:USERPROFILE\Desktop" | |
} |
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
:root { | |
/* DARK THEME COLORS */ | |
--whoogle-dark-page-bg: #212121; | |
--whoogle-dark-element-bg: #111111 ; | |
--whoogle-dark-logo: #007261 ; | |
--whoogle-dark-text: #c6d3d1; | |
--whoogle-dark-contrast-text: #90AFA3; | |
--whoogle-dark-secondary-text: #f9fafb; | |
--whoogle-dark-result-bg: #111111; | |
--whoogle-dark-result-title: #699C88; |
NewerOlder