Skip to content

Instantly share code, notes, and snippets.

import auth # Contains our client definition, with login to API
import httpClient, oauth2, json
import htmlparser, xmltree, strformat
import strutils, httpcore, strtabs
type
Index* = tuple[
plain: string,
num: string ]
Config {
-- appearance
font = "xft:UbuntuMono Nerd Font:size=10:antialias=true"
, bgColor = "#3a3a3a"
, fgColor = "#acacab"
, position = Top
--, border = BottomB
, borderColor = "#2f2f2f"
;==========================================================
;
;
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
;
#!/bin/bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch Polybar, using default config location ~/.config/polybar/config
polybar -r onebar &
import System.IO
import System.Exit
import XMonad
import qualified Data.Map as M
import qualified XMonad.StackSet as W
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
#!/usr/bin/env bash
####################
# Pre-config stuff #
####################
pkill herbstclient
hc() {
herbstclient "$@"
#!/usr/bin/env bash
####################
# Pre-config stuff #
####################
pkill herbstclient
hc() {
herbstclient "$@"
#!/bin/bash
used=$(free -m | grep Mem | awk '{print $3}')
avail=$(free -m | grep Mem | awk '{print $2}')
setenta=$((avail*70/100))
ochenta=$((avail*80/100))
noventa=$((avail*90/100))
porcentaje=$(free -b | grep Mem | awk '{print $3/$2 * 100}' | awk -F . '{print $1}')
displaymbs() {
#!/usr/bin/sh
if [ $(cat /tmp/test) == 1 ]; then
echo "Yes!"
echo 0 > /tmp/test
else
echo "No!"
echo 1 > /tmp/test
fi
#!/usr/bin/sh
password=$(echo -n $@ | sha1sum | sed 's/ -$//')
first_five=$(echo -n $password | cut -c 1-5)
all_the_rest=$(echo -n $password | cut -c 6-)
curl -s https://api.pwnedpasswords.com/range/$first_five > /tmp/pwned
retrieve=$(cat /tmp/pwned | grep -i $all_the_rest | cut -d':' -f2)
if [ -n $retrieve ]; then
echo "Password is safe!"