blob: 972fad54b4c0b91828e97b0d27217aa1f56b9614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()
|