View 1168292759754682368.txt
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
──▒▒▒▒▒▒───▄████▄ | |
─▒─▄▒─▄▒──███▄█▀ | |
─▒▒▒▒▒▒▒─▐████──█─█ | |
─▒▒▒▒▒▒▒──█████▄ | |
─▒─▒─▒─▒───▀████▀ | |
twitter.com/ArtsAscii |
View vis-config
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
##Refresh rate of the visualizers. A really high refresh rate may cause screen tearing. Default is 20. | |
visualizer.fps=60 | |
##Sets the audio sources to use. Currently available ones are "mpd" and "alsa"Sets the audio sources to use. | |
##Currently available ones are "mpd", "pulse" and "alsa". Defaults to "mpd". | |
#audio.sources=pulse | |
##vis tries to find the correct pulseaudio sink, however this will not work on all systems. | |
##If pulse audio is not working with vis try switching the audio source. A list can be found by running the | |
##command pacmd list-sinks | grep -e 'name:' -e 'index' |
View kitty.conf
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
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker | |
Fonts {{{ | |
#: kitty has very powerful font management. You can configure | |
#: individual font faces and even specify special fonts for particular | |
#: characters. | |
font_family Fira Code iScript | |
# bold_font Fira Code iScript |
View code-to-kbd.js
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 code = document.querySelectorAll("code"); | |
code.forEach( el => el.classList.add("prettyprint") ); | |
code.forEach( i => { | |
let found = false; | |
let h = i.innerHTML.toLowerCase(); | |
let c = ['tab', 'esc', 'return', 'enter']; | |
if ( c.includes(h) ) found = true; | |
if ( h.length === 1 ) found = true; | |
c = ['ctrl', 'alt', 'cmd', 'shift', 'win', 'super', 'kbd']; |
View config
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
## | |
# Files | |
mpd_music_dir = "~/Music" | |
lyrics_directory = ~/.ncmpcpp/lyrics | |
ncmpcpp_directory = ~/.ncmpcpp | |
mpd_host = "localhost" | |
mpd_port = "6600" | |
mpd_connection_timeout = "5" | |
mpd_crossfade_time = "5" |
View light-only.css
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
// should result in blue editor background if a theme with keyword "dark" is used | |
atom-workspace[class*="-light"] atom-text-editor { | |
background-color: blue !important; | |
} |
View hyper-green-scanlines.js
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
View atom-subtle-shadows.css
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
// body /deep/ atom-text-editor { | |
// transform: perspective(200px) rotateX(2deg) rotateZ(-3deg); | |
// transform-origin: center; | |
// transform-style: preserve-3d; | |
// } | |
atom-text-editor { | |
background: rgba(255,255,255,0.45); | |
box-shadow: | |
inset 0px 0px 200px rgba(0,50,150,0.5); |
View fish_prompt.fish
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 | |
and set retc normal | |
or set retc red | |
tty | string match -q -r tty | |
and set tty tty | |
or set tty pts | |
set_color $retc | |
if [ $tty = tty ] | |
echo -n .- |
View install-kitty.sh
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
#!/usr/bin/env bash | |
# ensure freetype is updated, important to avoid error: | |
# undefined symbol: FT_Get_Var_Blend_Coordinates | |
sudo add-apt-repository ppa:glasen/freetype2 | |
sudo apt update && sudo apt install freetype2-demos | |
# kitty installer script from https://sw.kovidgoyal.net/kitty/binary.html#manually-installing | |
curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin |
NewerOlder