feat: Enable option for float panel

Signed-off-by: Pranav <npv12@iitbbs.ac.in>
This commit is contained in:
Pranav
2023-06-03 08:41:14 +05:30
parent 1a5f20809a
commit b75165df4d
2 changed files with 3 additions and 2 deletions

View File

@@ -130,10 +130,11 @@ Compulsory field Specify color variant(s) [mocha|frappe|macchiato|latte|a
-s, --size VARIANT... Specify size variant [standard|compact] (Default: standard variant) -s, --size VARIANT... Specify size variant [standard|compact] (Default: standard variant)
-l, --link Link installed gtk-4.0 theme to config folder for all libadwaita app use this theme -l, --link Link installed gtk-4.0 theme to config folder for all libadwaita app use this theme
--zip Zips up the finally produced themes. --zip Zips up the finally produced themes.
--tweaks Specify versions for tweaks [black|rimless|normal] --tweaks Specify versions for tweaks [black|rimless|normal|float]
1. black: Blackness color version 1. black: Blackness color version
2. rimless: Remove the 1px border about windows and menus 2. rimless: Remove the 1px border about windows and menus
3. normal: Normal windows button style (titlebuttons: max/min/close) 3. normal: Normal windows button style (titlebuttons: max/min/close)
4. float: Floating gnome-shell panel style
-h, --help Show help -h, --help Show help
``` ```
You can install any theme like the following example You can install any theme like the following example

View File

@@ -59,7 +59,7 @@ parser.add_argument("--tweaks",
default=[], default=[],
nargs="+", nargs="+",
dest="tweaks", dest="tweaks",
choices=["black", "rimless", "normal"], choices=["black", "rimless", "normal", "float"],
help="Some specifc tweaks. like black, rimless, normal buttons") help="Some specifc tweaks. like black, rimless, normal buttons")
parser.add_argument("-l", "--link", parser.add_argument("-l", "--link",