๐พ
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
| # conky configuration | |
| # | |
| # screenshot: http://i.imgur.com/iFbyi0J.png | |
| # | |
| ############################################## | |
| # Settings | |
| ############################################## | |
| background yes | |
| use_xft yes | |
| xftfont Monospace:size=10 |
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 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 | |
| hc() { "${herbstclient_command[@]:-herbstclient}" "$@" ;} | |
| monitor=${1:-0} | |
| geometry=( $(herbstclient monitor_rect "$monitor") ) | |
| if [ -z "$geometry" ] ;then | |
| echo "Invalid monitor $monitor" | |
| exit 1 | |
| fi | |
| # geometry has the format W H X Y |
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 | |
| # screenFetch - a CLI Bash script to show system/theme info in screenshots | |
| # Copyright (c) 2010-2014 Brett Bohnenkamper <kittykatt@kittykatt.us> | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. |
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
| background "#101010" | |
| decorations none | |
| dockapp_mode none | |
| fuzzy_edges 0 | |
| geometry 1x1+333 # position x:333 y:0 | |
| grow_gravity NW | |
| icon_gravity NW | |
| icon_size 16 | |
| log_level err | |
| kludges force_icons_size |
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
| <html> | |
| <head> | |
| <title>monokai color scheme hacking</title> | |
| <style type="text/css"> | |
| body { | |
| background: #272822; | |
| color: #f8f8f2; | |
| font-family: "Lucida Console", Monaco, monospace; | |
| } |
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
| โโโโโโ[ box drawing cheat sheet ] | |
| โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ | |
| โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ | |
| โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ | |
| โ โก โข โฃ โค โฅ โฆ โง โจ โฉ โช โซ โฌ โญ โฎ โฏ |
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
| var ๊ = [ | |
| "<pre style='font-family: monospace; font-size: 50px;'>", | |
| "write", | |
| " OH HAI<br>", | |
| " .\"\";._ _.---._ _.-\"\".<br>", | |
| " /_.'_ '-' /`-` _ \\<br>", | |
| " .' / `\\ \\ /` \\ '.<br>", | |
| " .' / ; _ _ '-; \\ ;'.<br>", | |
| " _.' ; / / \\ \\ / \\ ; '._;._<br>", | |
| " .-'.--. | / | \\0|0/ \\ | '-.<br>", |
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 | |
| # | |
| # simple todo script | |
| # | |
| # โโโโโโโโโโ | |
| # โโ author โ xero <x@xero.nu> | |
| # โโ code โ http://code.xero.nu/todo | |
| # โโ mirror โ http://git.io/todo | |
| # โโโโโโโโโโโ | |
| # โโโโโโโโโโ |