From af7ae0e9badb67f4632d7ef84a416eb82370ec9c Mon Sep 17 00:00:00 2001 From: rho Date: Mon, 21 Dec 2015 16:11:39 +0545 Subject: update readme --- README.org | 38 ++++++++++++++++---------------------- 1 file changed, 16 insertions(+), 22 deletions(-) (limited to 'README.org') diff --git a/README.org b/README.org index 70094d5..36d2c87 100644 --- a/README.org +++ b/README.org @@ -1,10 +1,12 @@ -#+STARTUP: showall +#+TITLE: mode-icons +#+DATE: Monday, Dec 21 2015 +#+STARTUP: content -* Mode-icons +Show icons instead of mode names in emacs. - Show icons instead of mode names in emacs. +[[https://raw.githubusercontent.com/rhoit/mode-icons/dump/screenshots/screenshot01.png]] - Modes that have icons instead of names now: +Modes that have icons instead of names now: - Emacs-Lisp - Python @@ -12,26 +14,18 @@ - Lisp - PHP - HTML + - CSS + - JS + - SVG -** Installation +* Installation - To install use either method: +** manually -*** package.el + Place ~mode-icons.el~ somewhere in your =load-path= and copy the + ~icons/~ directory there as well. Then =require= ~mode-icons~ in your + [[http://gnu.org/software/emacs][Emacs]] init file. - If you have [[http://gnu.org/software/emacs][Emacs]] 24 or ~package.el~ installed manually you can just - create the tar file and use =package-install-file= to install it. +* Usage -**** Create the tar file - - Use =make dist= to create the tar file needed for ~package.el~. - -*** manually - - Place ~mode-icons.el~ somewhere in your =load-path= and copy the - ~icons/~ directory there as well. Then =require= ~mode-icons~ in your - [[http://gnu.org/software/emacs][Emacs]] init file. - -** Usage - - Once installed you can add =(mode-icons-mode)= to your init file. + Once installed you can add =(mode-icons-mode)= to your init file. -- cgit v1.2.3-54-g00ecf From 1bbf5883fedac94382a797ba37fc700d8f04d659 Mon Sep 17 00:00:00 2001 From: rho Date: Tue, 22 Dec 2015 09:02:09 +0545 Subject: testing xpm render --- README.org | 24 ++++++++++++++--------- icons/bash.2.xpm | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 9 deletions(-) create mode 100644 icons/bash.2.xpm (limited to 'README.org') diff --git a/README.org b/README.org index 36d2c87..a5cd7ef 100644 --- a/README.org +++ b/README.org @@ -8,15 +8,21 @@ Show icons instead of mode names in emacs. Modes that have icons instead of names now: - - Emacs-Lisp - - Python - - Scheme - - Lisp - - PHP - - HTML - - CSS - - JS - - SVG +| Modes | icon | +|------------+--------------------------------------------------------------------------| +| CSS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/css.png]] | +| Emacs-Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/emacs.png]] | +| HTML | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/html.png]] | +| JS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/js.png]] | +| Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/cl.png]] | +| Org-mode | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/org.png]] | +| PHP | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/php.png]] | +| Python | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/python.png]] | +| SVG | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/svg.png]] | +| Scheme | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/scheme.png]] | +| Shell | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/bash.png]] | + + * Installation diff --git a/icons/bash.2.xpm b/icons/bash.2.xpm new file mode 100644 index 0000000..2bd3ff3 --- /dev/null +++ b/icons/bash.2.xpm @@ -0,0 +1,59 @@ +/* XPM */ +static char *bash[] = { +/* columns rows colors chars-per-pixel */ +"16 16 37 1 ", +" c black", +". c #010101", +"X c gray1", +"o c #040404", +"O c gray2", +"+ c #060606", +"@ c #070707", +"# c gray3", +"$ c #090909", +"% c #0B0B0B", +"& c #131313", +"* c #151515", +"= c gray9", +"- c gray16", +"; c gray18", +": c #313131", +"> c #ACACAC", +", c #C0C0C0", +"< c gray76", +"1 c #C3C3C3", +"2 c gray77", +"3 c gray79", +"4 c #CCCCCC", +"5 c gray81", +"6 c #D8D8D8", +"7 c gray85", +"8 c gainsboro", +"9 c #E2E2E2", +"0 c gray90", +"q c #E6E6E6", +"w c #E7E7E7", +"e c #F1F1F1", +"r c #F5F5F5", +"t c gray97", +"y c #FDFDFD", +"u c #FFFFFF", +"i c None", +/* pixels */ +"iiiiiiiiiiiiiiii", +"iiiiiiiiiiiiiiii", +" ", +" 6e*+eq ;e, ", +" qu=@ur :u4 ", +" 3yuuyyuuy9 :u4 ", +" 4uuuuuuuu0 :u4 ", +" XOquuuurOo :u4 ", +" #%wuuuur%$ ;r1 ", +" 4uuuuuuuu0 ", +" 2tuuttuut8 .$@ ", +" qu=@ur :u4 ", +" <7&O75 -7> ", +" ", +"iiiiiiiiiiiiiiii", +"iiiiiiiiiiiiiiii" +}; -- cgit v1.2.3-54-g00ecf From 38be02ed8724f8f8debf77a962c73b17868793d6 Mon Sep 17 00:00:00 2001 From: krazedkrish Date: Wed, 23 Dec 2015 12:45:25 +0545 Subject: updates read me --- README.org | 1 + 1 file changed, 1 insertion(+) (limited to 'README.org') diff --git a/README.org b/README.org index a5cd7ef..16a31f4 100644 --- a/README.org +++ b/README.org @@ -18,6 +18,7 @@ Modes that have icons instead of names now: | Org-mode | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/org.png]] | | PHP | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/php.png]] | | Python | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/python.png]] | +| Ruby | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/ruby.png]] | | SVG | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/svg.png]] | | Scheme | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/scheme.png]] | | Shell | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/bash.png]] | -- cgit v1.2.3-54-g00ecf From ccb261e9598b7683c6a4d0733b13805790365b0a Mon Sep 17 00:00:00 2001 From: krazedkrish Date: Wed, 23 Dec 2015 15:51:49 +0545 Subject: updates readme --- README.org | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'README.org') diff --git a/README.org b/README.org index 16a31f4..2a5107f 100644 --- a/README.org +++ b/README.org @@ -10,18 +10,23 @@ Modes that have icons instead of names now: | Modes | icon | |------------+--------------------------------------------------------------------------| +| Coffee | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/coffee.png]] | | CSS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/css.png]] | | Emacs-Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/emacs.png]] | +| Haml | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/haml.png]] | | HTML | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/html.png]] | | JS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/js.png]] | | Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/cl.png]] | | Org-mode | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/org.png]] | | PHP | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/php.png]] | | Python | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/python.png]] | -| Ruby | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/ruby.png]] | +| Ruby | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/ruby.png]] | | SVG | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/svg.png]] | +| Sass | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/sass.png]] | | Scheme | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/scheme.png]] | | Shell | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/bash.png]] | +| Slim | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/slim.png]] | +| YAML | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/yaml.png]] | -- cgit v1.2.3-54-g00ecf