File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed
Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1919 "layout" :[
2020 "os" ,
2121 "hostname" ,
22+ "fill" ,
23+ "fill" ,
24+ "fill" ,
25+ "fill" ,
26+ "fill" ,
27+ "colourswatch"
2228 ] ,
2329
2430 ////////////////////// ASCII ART CONFIGURATION //////////////////////
Original file line number Diff line number Diff line change 1+ class Widget : # Must be named Widget.
2+ def __init__ (self ):
3+ # It is advised that you process your most intensive logic here.
4+ self .Value = "<:#f38ba8:>⬤ <:#fab387:>⬤ <:#f9e2af:>⬤ <:#a6e3a1:>⬤ <:#89b4fa:>⬤ <:#b4befe:>⬤"
5+
6+ def Get (self ):return self .Value # Must be named Get, but may return anything that can be converted to a string.
Original file line number Diff line number Diff line change 1+ class Widget : # Must be named Widget.
2+ def __init__ (self ):
3+ # It is advised that you process your most intensive logic here.
4+ self .Value = ""
5+
6+ def Get (self ):return self .Value # Must be named Get, but may return anything that can be converted to a string.
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ def OPTION_RegenerateConfiguration():
3535 exit (0 )
3636 else :
3737 print ("Are you sure you want to regenerate your configuration? This will reset everything to default!" )
38- print ("Type 'yes' to confirm, or anything else to cancel. " )
39- Confirmation = input ().strip ().lower ()
38+ print ("Enter your choice (yes/NO): " )
39+ Confirmation = input ("> " ).strip ().lower ()
4040 if Confirmation .lower ().strip () in "yes" :
4141 ShellUtilityLibrary .rmtree (FancyfetchShared .ConfigurationDirectory , ignore_errors = True )
4242 FancyfetchSetup .EnsureConfiguration ()
You can’t perform that action at this time.
0 commit comments