summaryrefslogtreecommitdiff
path: root/src/initialize_rofi.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/initialize_rofi.py')
-rw-r--r--src/initialize_rofi.py20
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()