[colorschemes] force Python 3

This commit is contained in:
Dmytro Meleshko 2019-08-26 14:54:06 +03:00
parent cc7ab02507
commit 6b14d6c4be
5 changed files with 10 additions and 5 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# base16-eighties by Chris Kempson (http://chriskempson.com)
base16_name = "eighties"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import _theme as theme

View file

@ -1,7 +1,12 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import _theme as theme
def print_color(key_name, color):
print("{} {}".format(key_name, color))
print("background", theme.bg)
print("foreground", theme.fg)
print("cursor", theme.cursor_bg)

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import _theme as theme

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import _theme as theme