diff options
| author | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
| commit | 8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4 (patch) | |
| tree | 868e0d8389fb2b4e413409f65f57caa9c0b37eda /.local/bin/chooseprofile | |
| parent | db008a76e93dcfbf00fec5a141a1e1bd122b04a7 (diff) | |
| download | hyprdots-8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4.tar.gz | |
uupdate
Diffstat (limited to '.local/bin/chooseprofile')
| -rwxr-xr-x | .local/bin/chooseprofile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/chooseprofile b/.local/bin/chooseprofile index f4d32b5..d201042 100755 --- a/.local/bin/chooseprofile +++ b/.local/bin/chooseprofile @@ -2,7 +2,7 @@ profiles=$(awk -F= '/^\[Profile/ {profile=$1} /Name/ && !/default/ {print $2}' ~/.mozilla/icecat/profiles.ini) -profile=$(echo "$profiles" | mew -p "Select IceCat Profile" -l 10) +profile=$(echo "$profiles" | rofi -theme-str 'window {width: 10%;}' -dmenu -p "Select IceCat Profile" -l 10) if [ -z "$profile" ] || ! echo "$profiles" | rg -q "^$profile$"; then echo "Invalid selection or no profile selected. Exiting." |