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 | |
| op=$1 | |
| #Este es el nΓΊmero de tu tarjeta | |
| #en mi caso la 0 es la interna | |
| #la numero dos es el bluez | |
| #puedes identificarla con el comando | |
| #pactl list | |
| tar=0 | |
| tartwo=1 |
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 | |
| # Si no tienes un playlist generado puedes generarlo de la siguiente manera: | |
| # updatedb -l 0 -U [Music PATH] -o music.db | |
| # Ejemplo: update -l 0 -u $HOME/Music -o music.db | |
| #Adapted from by https://moc.daper.net/comment/6080#comment-6080 | |
| if [[ -z $(pgrep mocp) ]]; then | |
| sh $HOME/.moc/mocp-tee && mocp -c | |
| fi |
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
| ;========================================================== | |
| ; | |
| ; | |
| ; βββββββ βββββββ βββ βββ ββββββββββ ββββββ βββββββ | |
| ; ββββββββββββββββββββ ββββ ββββββββββββββββββββββββββββ | |
| ; βββββββββββ ββββββ βββββββ ββββββββββββββββββββββββ | |
| ; βββββββ βββ ββββββ βββββ ββββββββββββββββββββββββ | |
| ; βββ ββββββββββββββββββββ βββββββββββ ββββββ βββ | |
| ; βββ βββββββ βββββββββββ βββββββ βββ ββββββ βββ | |
| ; |
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
| import setproctitle | |
| setproctitle.setproctitle("qutebrowser") | |
| # Bindings | |
| config.bind("gi", "hint inputs") | |
| config.bind("<f12>", "inspector") | |
| config.unbind("+") | |
| config.unbind("-") | |
| config.unbind("=") |
NewerOlder