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 | |
# | |
# This is an Arch Linux installation script for UEFI virtual machines. | |
# Btrfs note: CoW can negatively affect performance with large files that have | |
# small random writes. Disable CoW for databases and virtual machine images. | |
# | |
# To disable CoW for single files/directories do: | |
# $ chattr +C /dir/file |
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
! rxvt-unicode resources | |
! URxvt*termName: string | |
! URxvt*geometry: geometry | |
! URxvt*chdir: string | |
! URxvt*reverseVideo: boolean | |
! URxvt*loginShell: boolean | |
! URxvt*jumpScroll: boolean | |
! URxvt*skipScroll: boolean | |
! URxvt*pastableTabs: boolean |
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
#!/usr/bin/env bash | |
# | |
# Clone all listed git repositories. | |
# Add/edit repo URLs to clone. Comment those you don't want to. | |
# Make sure you are inside the directory where you want to clone the git | |
# repositories before you run this script. | |
# | |
# Respective cloned folders are named after the keys in the array. | |
# Git repos array. |
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
#!/usr/bin/env bash | |
# | |
# Update files at correct paths in the system. | |
# Edit the paths for your system before using the script. | |
# Reset prompt colors | |
readonly COLOR_OFF='\e[0m' | |
# Regular prompt colors | |
readonly RED='\e[0;31m' |
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
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
output_format = "i3bar" |
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
#!/usr/bin/env bash | |
# | |
# Runs exiting commands (e.g. shutdown, lock, reboot, etc.) for i3 window | |
# manager using polkit. | |
# This script is intended to be used with i3wm hotkey combinations. | |
# Usage: i3exit {lock|logout|suspend|hibernate|reboot|shutdown} | |
####################################### | |
# Lock screen in i3wm. | |
# Globals: |
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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
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
out_to_x no | |
own_window no | |
out_to_console yes | |
background no | |
max_text_width 0 | |
# Keep digits at their constant positions. | |
pad_percents 3 | |
# Update interval (seconds) |
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
#!/usr/bin/env bash | |
# | |
# Wrapper script for Conky to run with i3bar. | |
# Send the header so that i3bar knows we want to use JSON. | |
echo '{"version":1}' | |
# Begin an endless array. | |
echo '[' |
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
#! /usr/bin/env bash | |
# | |
# Written by: crossroads1112 | |
# Purpose: This script is complimentary to the snp script. It makes the process rolling back upgrades and daily snapshots easier | |
# | |
# | |
# | |
################################ | |
log_path="/var/local/log/rollback" | |
date=$(date "+%Y-%m-%d-%H%M%S") |
NewerOlder