From 1be4c39b4367004cd44a5cfe1f64308f39e91a48 Mon Sep 17 00:00:00 2001 From: Chandler J Date: Fri, 26 Jan 2024 23:42:16 -0700 Subject: began adding rofi initializer --- src/initialize_rofi.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/initialize_rofi.py (limited to 'src/initialize_rofi.py') 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() -- cgit v1.2.3