diff options
| author | Chandler J <cjustice2000@gmail.com> | 2024-04-13 09:21:54 -0600 |
|---|---|---|
| committer | Chandler J <cjustice2000@gmail.com> | 2024-04-13 09:21:54 -0600 |
| commit | d1f74e783cd9af20a81e86783e0b7fe23371e208 (patch) | |
| tree | 8d72edcb63782689b72f7b085d3ae671eca0845a /src/instant_rice.py | |
| parent | f594dc71a727100075164a2a21da11dc550cc514 (diff) | |
added ability to load preset themes using -t
Diffstat (limited to 'src/instant_rice.py')
| -rw-r--r-- | src/instant_rice.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/instant_rice.py b/src/instant_rice.py index 4102fa1..2c8bd0a 100644 --- a/src/instant_rice.py +++ b/src/instant_rice.py @@ -8,13 +8,14 @@ import initialize_rofi from get_args import get_args,usage from load_config import systemConfig from rich import print + if __name__ == '__main__': if len(sys.argv) > 1: config = systemConfig() - img_path, initialize, reconfigure, theme = get_args(sys.argv, config.wallpaper_directory) + img_path, initialize, reconfigure, theme = get_args(sys.argv, config.wallpaper_directory, config.theme_directory) if initialize: initialize_rofi.reconfigureRofi() |
