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
let counter = 0; | |
let pronunciationTrainer = setInterval(() => { | |
if(counter > 10) { | |
clearInterval(pronunciationTrainer); | |
} | |
let words = ['whom', 'authenticity', 'thus']; | |
let selectWord = Math.floor(Math.random() * words.length) | |
let utterance = new SpeechSynthesisUtterance(words[selectWord]); | |
utterance.lang = 'en'; | |
speechSynthesis.speak(utterance); |
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 | |
cd "/home/rs/.config/i3/" | |
import -silent -window root lock.png; | |
convert lock.png -scale 10% -scale 1000% lock.png | |
i3lock -i lock.png --textcolor=eee8d5ff --ringcolor=07364295 --keyhlcolor=268bd295 --bshlcolor=dc322f95 --insidecolor=002b3695 --insidevercolor=268bd295 --ringvercolor=268bd295 --insidewrongcolor=dc322f95 --ringwrongcolor=dc322f95 --linecolor=07364295 --separatorcolor=07364295; |