diff options
author | hut <hut@hut.pm> | 2019-04-03 16:37:43 +0200 |
---|---|---|
committer | hut <hut@hut.pm> | 2019-04-03 16:37:43 +0200 |
commit | 55801cb4121c47f2af5dab6e62838505a9882c0b (patch) | |
tree | 2e3233b24bab7fe0383dabdcb507f33510aaded2 | |
parent | 0bffe922cee451cba6c457dbf641bbcd3a12b64a (diff) | |
download | ranger-55801cb4121c47f2af5dab6e62838505a9882c0b.tar.gz |
Revert "A E S T H E T I C"
This reverts commit 0bffe922cee451cba6c457dbf641bbcd3a12b64a.
-rw-r--r-- | ranger/colorschemes/aesthetic.py | 47 | ||||
-rw-r--r-- | ranger/config/rc.conf | 2 |
2 files changed, 1 insertions, 48 deletions
diff --git a/ranger/colorschemes/aesthetic.py b/ranger/colorschemes/aesthetic.py deleted file mode 100644 index 22a056e9..00000000 --- a/ranger/colorschemes/aesthetic.py +++ /dev/null @@ -1,47 +0,0 @@ -# This file is part of ranger, the console file manager. -# License: GNU GPL version 3, see the file "AUTHORS" for details. - -from __future__ import (absolute_import, division, print_function) - -from ranger.colorschemes.default import Default -from ranger.gui.color import bold, BRIGHT, reverse - - -class Scheme(Default): - progress_bar_color = 166 - - def use(self, context): - fg, bg, attr = Default.use(self, context) - - if context.directory and not context.marked and not context.link \ - and not context.inactive_pane: - fg = 165 - - elif context.link: - fg = 122 if context.good or context.in_titlebar else 198 - - elif context.in_titlebar and context.hostname: - fg = 84 - - elif context.container: - fg = 162 - - elif context.media: - if context.image: - fg = 227 - else: - fg = 174 - - elif context.executable and not \ - any((context.media, context.container, - context.fifo, context.socket, context.link)): - attr |= bold - fg = 47 - - if context.main_column: - if context.marked and not context.selected: - attr |= bold - attr |= reverse - fg = 214 - - return fg, bg, attr diff --git a/ranger/config/rc.conf b/ranger/config/rc.conf index e2e215fa..4a182f69 100644 --- a/ranger/config/rc.conf +++ b/ranger/config/rc.conf @@ -136,7 +136,7 @@ set show_hidden_bookmarks true # Which colorscheme to use? These colorschemes are available by default: # default, jungle, snow, solarized -set colorscheme aesthetic +set colorscheme default # Preview files on the rightmost column? # And collapse (shrink) the last column if there is nothing to preview? |