approbation
agog
nondescript
draught
uncouth
pious
spendthrift
villain
rustic
sanctimonious
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
function fish_prompt | |
# Set colors | |
set -l red (set_color red) | |
set -l blue (set_color blue) | |
set -l yellow (set_color yellow) | |
set -l normal (set_color normal) | |
# Get username, hostname, job count, and current directory | |
set -l user (whoami) | |
set -l host (hostname) |
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
// | |
// Deduplicates an array and also returns a redundant array containing indices to the original data in the deduplicated array | |
// | |
function dedup(arr) { | |
let indexLookups = [] | |
for (let i = 0; i < arr.length; i++) { | |
let idx = arr.indexOf(arr[i]) | |
// Store a index reference to the first occurrence of the element in the possibly shrinking array that is being deduplicated |
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
[binds] | |
<Ctrl+Shift+R> = exec cp "$imv_current_file" /tmp/vips-orig; exec vips rot /tmp/vips-orig "$imv_current_file" d90 && echo "rotated: $imv_current_file" | |
<Ctrl+Shift+X> = exec rm -v "$imv_current_file"; close |
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
xwayland disabled | |
set $mod Mod4 | |
# Main display (native resolution) | |
output eDP-1 scale 1 | |
# Background wallpaper | |
output * bg /home/specious/Downloads/bg/vtop.png fill |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.13.2 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110100 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23601 |
NewerOlder