mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[colorschemes] force Python 3
This commit is contained in:
parent
cc7ab02507
commit
6b14d6c4be
5 changed files with 10 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
# base16-eighties by Chris Kempson (http://chriskempson.com)
|
# base16-eighties by Chris Kempson (http://chriskempson.com)
|
||||||
base16_name = "eighties"
|
base16_name = "eighties"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import _theme as theme
|
import _theme as theme
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import _theme as theme
|
import _theme as theme
|
||||||
|
|
||||||
|
|
||||||
|
def print_color(key_name, color):
|
||||||
|
print("{} {}".format(key_name, color))
|
||||||
|
|
||||||
|
|
||||||
print("background", theme.bg)
|
print("background", theme.bg)
|
||||||
print("foreground", theme.fg)
|
print("foreground", theme.fg)
|
||||||
print("cursor", theme.cursor_bg)
|
print("cursor", theme.cursor_bg)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import _theme as theme
|
import _theme as theme
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import _theme as theme
|
import _theme as theme
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue