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
{ | |
"PresetList": [ | |
{ | |
"AlignAVStart": true, | |
"AudioCopyMask": [ | |
"copy:aac" | |
], | |
"AudioEncoderFallback": "av_aac", | |
"AudioLanguageList": [], | |
"AudioList": [ |
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
# Systemd service file: Automatically will set both wlan0 and wlan1 to monitor mode at boot | |
# Made by: @adde88 - 2024 - <adde88@gmail.com> | |
# | |
# Do this after installing this file to: /lib/systemd/system/: | |
# sudo systemctl daemon-reload | |
# sudo systemctl enable wifi-monitor-mode.service | |
# sudo systemctl start wifi-monitor-mode.service | |
# | |
[Unit] |
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 | |
# | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE# Version 2, December 2004 | |
# Copyright (C) 2024 Andreas Nilsen <adde88@gmail.com> | |
# | |
# Everyone is permitted to copy and distribute verbatim or modified | |
# copies of this license document, and changing it is allowed as long | |
# as the name is changed. | |
# | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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 | |
# Written by: Andreas Nilsen, 09.01.2023 - <adde88@gmail.com> | |
# Made for Kali Linux 2024.1 / Debian 12, with Gnome Desktop Environment | |
# | |
# Installing zenity package if not already installed | |
if ! command -v zenity &> /dev/null; then | |
echo "Installing missing: 'zenity' package..." | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root to install any missing packages." |
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
# Script to run Stable Diffusion at launch using systemd | |
# Modify script, like directories and username as needed | |
# File should then be located here: /usr/lib/systemd/system/stable-diffusion.service | |
# Then run "sudo systemctl enable stable-diffusion" | |
# "sudo systemctl start stable-diffusion" | |
# | |
# Written by Andreas Nilsen - <adde88@gmail.com> | |
# | |
# |
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
#!/usr/bin/env bash | |
# | |
# Written by: Andreas Nilsen - <adde88@gmail.com> | |
# | |
# This script is custom made to mount my drives, USB drives, and SWAP to their correct directory, due to issues with fstab and systemctl on my system. | |
# it will attempt to detect any drives that are already mounted correctly and uncorrectly, and then behave accordingly | |
# it will attempt to fix any NTFS partitions by using 'ntfsfix' on them before mounting them. | |
# it is meant to be run as a cronjob every minutes, and will ONLY do anything IF it detects that a drive is NOT mounted correctly. | |
# | |
# Latest update: 28.June.2024 |
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 | |
# Check for the --yes command line argument to skip yes/no prompts | |
if [ "$1" = "--yes" ] | |
then | |
YES=1 | |
else | |
YES=0 | |
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
#!/bin/bash | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
# Version 2, December 2004 | |
# Copyright (C) 2023 Andreas Nilsen <adde88@gmail.com> | |
# | |
# This script has been fully refactored for production-grade robustness, security, | |
# and maintainability. It incorporates strict error checking, readonly variables, | |
# input validation, and modern Bash practices. | |
# | |
# Example Usage: |
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
; This is a custom Rainmeter Config for my Windows server with 7 Disks | |
; Your system will MOST LIKELY NOT support this OUT OF THE BOX! | |
; To get it working, you will likely need to define your own variables within the Variables section, specifically the variables naming each disk: (Ex: disk1=C: disk2=D:) | |
; Script written by: Andreas Nilsen <adde88@gmail.com> | |
[Rainmeter] | |
Update=1000 | |
Background=#@#Background.png | |
BackgroundMode=3 | |
BackgroundMargins=0,34,0,14 |
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
-- Denne Norske conky configen ble laget av: Andreas Nilsen <adde88@gmail.com> - github.com/adde88 | |
-- Lagre denne filen her: ~/.config/conky/conky.config | |
-- | |
-- © 09.12.2022 | |
conky.config = { | |
alignment = 'top_right', | |
background = false, | |
border_width = 1, | |
color1 = '#07CC0D', |