mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
Merge branch 'main' of https://github.com/Qortal/Brooklyn into main
This commit is contained in:
commit
7340a54332
1
Changes.txt
Normal file
1
Changes.txt
Normal file
@ -0,0 +1 @@
|
||||
Changes
|
@ -7,8 +7,8 @@ Comment[it]=Richiesta password per Enlightenment
|
||||
Icon=enlightenment-askpass
|
||||
OnlyShowIn=Enlightenment;
|
||||
Exec=enlightenment_askpass
|
||||
Terminal=false
|
||||
Categories=System
|
||||
Terminal=true
|
||||
Categories=Applications
|
||||
StartupNotify=false
|
||||
StartupWMClass=enlighenment_askpass
|
||||
NoDisplay=true
|
||||
NoDisplay=false
|
||||
|
@ -35,4 +35,4 @@ Comment[tr]=Enlightenment kullanarak giriş yaın (Version @VERSION@)
|
||||
Icon=@prefix@/share/enlightenment/data/images/enlightenment.png
|
||||
TryExec=@prefix@/bin/enlightenment_start
|
||||
Exec=@prefix@/bin/enlightenment_start
|
||||
DesktopNames=Enlightenment
|
||||
DesktopNames=e17
|
||||
|
@ -46,6 +46,7 @@ _fill_data(E_Config_Dialog_Data *cfdata)
|
||||
cfdata->poll_interval = cpufreq_config->poll_interval;
|
||||
cfdata->restore_governor = cpufreq_config->restore_governor;
|
||||
cfdata->auto_powersave = cpufreq_config->auto_powersave;
|
||||
cfdata->auto_powersave = cpufreq_config->performance;
|
||||
cfdata->pstate_min = cpufreq_config->pstate_min - 1;
|
||||
cfdata->pstate_max = cpufreq_config->pstate_max - 1;
|
||||
if (cpufreq_config->powersave_governor)
|
||||
@ -99,6 +100,23 @@ _basic_create_widgets(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dia
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
e_widget_list_object_append(o, of, 1, 0, 0.5);
|
||||
|
||||
ob = e_widget_check_add(evas, _("Automatic powersaving"), &cfdata->auto_powersave);
|
||||
e_widget_list_object_append(o, ob, 1, 0, 0.5);
|
||||
|
||||
of = e_widget_framelist_add(evas, _("Update poll interval"), 0);
|
||||
rg = e_widget_radio_group_new(&cfdata->poll_interval);
|
||||
ob = e_widget_radio_add(evas, _("Fast (8 ticks)"), 8, rg);
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
ob = e_widget_radio_add(evas, _("Medium (16 ticks)"), 16, rg);
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
ob = e_widget_radio_add(evas, _("Normal (64 ticks)"), 64, rg);
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
ob = e_widget_radio_add(evas, _("Slow (128 ticks)"), 128, rg);
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
ob = e_widget_radio_add(evas, _("Very Slow (256 ticks)"), 256, rg);
|
||||
e_widget_framelist_object_append(of, ob);
|
||||
e_widget_list_object_append(o, of, 1, 0, 0.5);
|
||||
|
||||
if ((cpufreq_config->status) && (cpufreq_config->status->pstate))
|
||||
{
|
||||
ob = e_widget_label_add(evas, _("Minimum Power State"));
|
||||
|
@ -0,0 +1 @@
|
||||
This will be populated with data.
|
10
README.txt
10
README.txt
@ -1,6 +1,6 @@
|
||||
- Brooklyn R , The Moose V1.0
|
||||
# Brooklyn R , The Moose V1.0
|
||||
* V1.0 is based off a Plasma Dektop
|
||||
* V1.1a should be based on e17
|
||||
* V1.1a should be based on e17 sicne GPU issue is fixed
|
||||
|
||||
D: Raziel A. Crowe aka Scare Crowe
|
||||
M: Sean Torchy aka Moose on the loose
|
||||
@ -22,7 +22,11 @@ X: Netflix & Chill
|
||||
|
||||
http://git.gniibe.org/gitweb/?p=gnuk/fst-01.git
|
||||
|
||||
Want to send some tip for continued development?
|
||||
If you rely heavily on VPN to bypass your regional filters then it will be a good idea to have extra entropy in hand. Any OpenSource Entropy stick should work on Brooklyn from now.
|
||||
|
||||
You can get a release and flash it directly on your USB 3 hard drive with Balena Etcher. The default image size is meant for a 32GB microSD card. If you have a bigger microSD card then after login do a "sudo raspi-config", head over to Advacned and resize the file system. Same can be done for a GPT partitioned USB 3 hard drive/SSD. Keep in mind that MBR drives have a size limit per block partition. For 4TB or bigger drive you might want to use GPT instead. If you have purchased a Raspberry Pi 4 elsewhere then you might have to flash the boot loader to do a mass storaeg boot. Ask The Moose on the loose for help.
|
||||
|
||||
Want to send some tip for continued development or features / apps ported on Brooklyn?
|
||||
|
||||
DOGE: DJTRkmhwhG7W8t7WvAddZBnNkKWML6nHqJ
|
||||
LTC: LQyhdH9LfL9m5vqMHfeTZdRoUU8qAouZmQ
|
||||
|
Loading…
Reference in New Issue
Block a user