fix lunux scripts LD_LIBRARY_PATH to include Tor (for ssl etc) and fix color of add/edit profile button

This commit is contained in:
Dan Ballard 2022-11-20 18:22:20 -08:00
parent ada351f778
commit f29e926d28
4 changed files with 4 additions and 4 deletions

View File

@ -339,7 +339,7 @@ class _AddEditProfileViewState extends State<AddEditProfileView> {
showAlertDialog(context);
},
icon: Icon(Icons.delete_forever),
label: Text(AppLocalizations.of(context)!.deleteBtn),
label: Text(AppLocalizations.of(context)!.deleteBtn, style: TextStyle(color: Provider.of<Settings>(context).theme.defaultButtonActiveColor)),
)))
]))))));
});

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec env LD_LIBRARY_PATH=./lib/ ./lib/cwtch
exec env LD_LIBRARY_PATH=./lib/:./lib/Tor ./lib/cwtch

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec env LD_LIBRARY_PATH=~/.local/lib/cwtch/ ~/.local/lib/cwtch/cwtch
exec env LD_LIBRARY_PATH=~/.local/lib/cwtch/:~/.local/lib/cwtch/Tor ~/.local/lib/cwtch/cwtch

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec env LD_LIBRARY_PATH=/usr/lib/cwtch /usr/lib/cwtch/cwtch
exec env LD_LIBRARY_PATH=/usr/lib/cwtch:/usr/lib/cwtch/Tor /usr/lib/cwtch/cwtch