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/sh | |
mkdir -p converted | |
for folder in ./Shadowplay/*/; do | |
echo FOLDER: $folder | |
for file in "${folder}"*; do | |
printf "\tFILE: %s" $file | |
file=$(basename "$file") | |
name=${file%.*} | |
printf "\tNAME: %s" $file | |
if [ -f ./converted/"${name}.mp4" ]; then |
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
*.color0: #161616 | |
*.color1: #ee5396 | |
*.color2: #42be65 | |
*.color3: #82cfff | |
*.color4: #78a9ff | |
*.color5: #be95ff | |
*.color6: #3ddbd9 | |
*.color7: #f2f4f8 | |
*.color8: #37474f | |
*.color9: #ee5396 |
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
local M = {} | |
local wk = require "which-key" | |
-- Map a key to a lua function or vimscript snippet also add a description. | |
-- | |
-- map keycode:string lua function OR vimscript:string description:string () | |
-- | |
-- Example: | |
-- ```lua |
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 python3 | |
import random | |
food = { | |
"souvlaki": 0.25, | |
"skepasti": 0.25, | |
"pizza": 0.3, | |
"borgar": 0.4, | |
"noodz": 0.5, |