Skip to content

Instantly share code, notes, and snippets.

*foreground: #ececec
*background: #1a1a1a
!colors
! black
*color0: #1c1c1c
*color8: #505050
! red
*color1: #cd5c5c
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