diff --git a/Scripts/background.scpt b/Scripts/background.scpt index ab14ea9..267f58a 100644 --- a/Scripts/background.scpt +++ b/Scripts/background.scpt @@ -1,5 +1,5 @@ tell application "iTerm" tell current session of current window - set background image to "/Users/Laki/GitHub/Pokemon-Terminal/./Images/Generation II - Johto/155.png" + set background image to "/Users/Laki/GitHub/Pokemon-Terminal/./Images/Generation I - Kanto/025.png" end tell end tell \ No newline at end of file diff --git a/Scripts/wallpaper.scpt b/Scripts/wallpaper.scpt index b80bfcc..a8f5389 100644 --- a/Scripts/wallpaper.scpt +++ b/Scripts/wallpaper.scpt @@ -1,5 +1,5 @@ tell application "System Events" tell current desktop - set picture to "/Users/Laki/GitHub/Pokemon-Terminal/./Images/Generation I - Kanto/025.png" + set picture to "/Users/Laki/GitHub/Pokemon-Terminal/./Images/Generation I - Kanto/093.png" end tell end tell \ No newline at end of file diff --git a/main.py b/main.py index d35d857..38c33cc 100755 --- a/main.py +++ b/main.py @@ -125,7 +125,7 @@ def change_wallpaper(db, arg): else: # If not found in the database, try to give suggestions. suggestions = db.names_with_infix(arg) if len(suggestions) == 0: - print("No such Pokemon was found and no suggestion are available.") + print("No such Pokemon was found and no suggestions are available.") elif len(suggestions) == 1: scripter.change_wallpaper(suggestions[0]) print("Did you mean " + suggestions[0].get_name().capitalize() + "?")