diff options
| author | Chandler J <cjustice2000@gmail.com> | 2024-01-26 23:42:16 -0700 |
|---|---|---|
| committer | Chandler J <cjustice2000@gmail.com> | 2024-01-26 23:42:16 -0700 |
| commit | 1be4c39b4367004cd44a5cfe1f64308f39e91a48 (patch) | |
| tree | f12a1989a863982778ae33f9a7b09154abee82b8 /src/initialize_rofi.py | |
| parent | 007e7076c7404c86180ff3aa6ea3fe15024a87c3 (diff) | |
began adding rofi initializer
Diffstat (limited to 'src/initialize_rofi.py')
| -rw-r--r-- | src/initialize_rofi.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/initialize_rofi.py b/src/initialize_rofi.py new file mode 100644 index 0000000..972fad5 --- /dev/null +++ b/src/initialize_rofi.py @@ -0,0 +1,20 @@ +from rich import print +import os +def initializeRofi() -> None: + """ + Create a Rofi theme if one is not present with desired defaults to work with InstantRice. + Will pull source file from data dir + """ + print('[bold red]Initializing Rofi Theme') + + uname = os.getlogin() + + + # copy the default config from data to .config + + # add line to rofi config + # (this means we need might need to make the rofi config file, and the rofi directory) + # (it also will be necessary to grab the current user's username to access their .config) + print(uname) + +initializeRofi() |
