pokemon-terminal-theme 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pokemonterminal/platform/__init__.py +2 -2
- package/pokemonterminal/platform/named_event/posix.py +1 -1
- package/pokemonterminal/platform/named_event/win.py +1 -1
- package/pokemonterminal/scripter.py +2 -2
- package/pokemonterminal/slideshow.py +1 -1
- package/pokemonterminal/terminal/__init__.py +1 -1
- package/pokemonterminal/terminal/adapters/conemu.py +1 -1
- package/pokemonterminal/terminal/adapters/iterm.py +1 -1
- package/pokemonterminal/terminal/adapters/kitty.py +1 -1
- package/pokemonterminal/terminal/adapters/terminology.py +1 -1
- package/pokemonterminal/terminal/adapters/tilix.py +1 -1
- package/pokemonterminal/terminal/adapters/windowsterminal.py +1 -1
- package/pokemonterminal/wallpaper/__init__.py +1 -1
- package/pokemonterminal/wallpaper/adapters/darwin.py +1 -1
- package/pokemonterminal/wallpaper/adapters/feh.py +1 -1
- package/pokemonterminal/wallpaper/adapters/gnome.py +1 -1
- package/pokemonterminal/wallpaper/adapters/sway.py +1 -1
- package/pokemonterminal/wallpaper/adapters/swww.py +1 -1
- package/pokemonterminal/wallpaper/adapters/win32.py +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
|
|
3
3
|
if sys.platform == 'win32':
|
|
4
|
-
from .named_event.win import WindowsNamedEvent as platform_event
|
|
4
|
+
from pokemonterminal.platform.named_event.win import WindowsNamedEvent as platform_event
|
|
5
5
|
else:
|
|
6
|
-
from .named_event.posix import PosixNamedEvent as platform_event
|
|
6
|
+
from pokemonterminal.platform.named_event.posix import PosixNamedEvent as platform_event
|
|
7
7
|
|
|
8
8
|
PlatformNamedEvent = platform_event
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Used for creating, running and analyzing applescript and bash scripts.
|
|
2
2
|
import sys
|
|
3
3
|
|
|
4
|
-
from .terminal import get_current_terminal_adapters
|
|
5
|
-
from .wallpaper import get_current_wallpaper_adapters
|
|
4
|
+
from pokemonterminal.terminal import get_current_terminal_adapters
|
|
5
|
+
from pokemonterminal.wallpaper import get_current_wallpaper_adapters
|
|
6
6
|
|
|
7
7
|
TERMINAL_PROVIDER = None
|
|
8
8
|
WALLPAPER_PROVIDER = None
|
|
@@ -2,7 +2,7 @@ import os
|
|
|
2
2
|
import sys
|
|
3
3
|
from subprocess import CalledProcessError, run
|
|
4
4
|
|
|
5
|
-
from . import TerminalProvider as _TProv
|
|
5
|
+
from pokemonterminal.terminal.adapters import TerminalProvider as _TProv
|
|
6
6
|
|
|
7
7
|
def print_kitty_error(err: CalledProcessError):
|
|
8
8
|
print("Failed to set kitty background. Did you configure"
|