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 bash | |
# | |
# This script is written by https://gitlab.com/YOUR-WORST-TACO | |
# source: https://gitlab.com/YOUR-WORST-TACO/dots/blob/hecate/bin/colorpane | |
# | |
# Define Color Variables | |
trap ctrl_c EXIT | |
# hide cursor |
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
ncmpcpp_directory = "~/.ncmpcpp" | |
mpd_host = "127.0.0.1" | |
mpd_port = "6600" | |
mpd_music_dir = "~/Música" | |
mpd_crossfade_time = 5 | |
visualizer_fifo_path = "/tmp/mpd.fifo" | |
visualizer_output_name = "FIFO" |
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/bash | |
# | |
# This file echoes a bunch of color codes to the | |
# terminal to demonstrate what's available. Each | |
# line is the color code of one forground color, | |
# out of 17 (default + 16 escapes), followed by a | |
# test use of that color on all nine background | |
# colors (default + 8 escapes). | |
# | |
# Author: Giles Orr |
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/bash | |
initializeANSI() | |
{ | |
esc="$(echo -en '\e')" | |
blackf="${esc}[30m"; redf="${esc}[31m"; greenf="${esc}[32m" | |
yellowf="${esc}[33m" bluef="${esc}[34m"; purplef="${esc}[35m" | |
cyanf="${esc}[36m"; whitef="${esc}[37m" |
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/bash | |
# author: Marcos Oliveira <terminalroot.com.br> | |
# license: MIT | |
# version: 1.0 | |
function get_dados_youtube() { | |
page_video_youtube=$(mktemp) | |
page_canal=$(mktemp) | |
# A variável 1 é um parâmetro de posição |
NewerOlder