diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-02-11 22:40:11 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-02-11 22:40:11 +0100 |
commit | 8003c209fea16cd164817306cb33d46ac61a44f0 (patch) | |
tree | ddb54e82c0606f040ebcb19d67301622a4572d23 | |
parent | 1734d48af6edd1b115910a61e132713459b1d8f1 (diff) |
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | src/gui/GlobalSettingsPage.cpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 1 |
3 files changed, 5 insertions, 2 deletions
@@ -118,4 +118,6 @@ Check if "modprobe uinput" is needed on some systems (old fedora?). Add recording timer to see duration of recording/streaming. -Make folder with window name work when using gamescope. Gamescope runs x11 itself so to get the window name inside that we have to connect to the gamescope X11 server (DISPLAY=:1 on x11 and DISPLAY=:2 on wayland, but not always).
\ No newline at end of file +Make folder with window name work when using gamescope. Gamescope runs x11 itself so to get the window name inside that we have to connect to the gamescope X11 server (DISPLAY=:1 on x11 and DISPLAY=:2 on wayland, but not always). + +When clicking on current directory in file manager show a dropdown menu where you can select common directories (HOME, Videos, Downloads and mounted drives) for quick navigation. Maybe even button to search. diff --git a/src/gui/GlobalSettingsPage.cpp b/src/gui/GlobalSettingsPage.cpp index 81e1d9a..d00ad49 100644 --- a/src/gui/GlobalSettingsPage.cpp +++ b/src/gui/GlobalSettingsPage.cpp @@ -171,7 +171,7 @@ namespace gsr { std::unique_ptr<Subsection> GlobalSettingsPage::create_appearance_subsection(ScrollablePage *parent_page) { auto list = std::make_unique<List>(List::Orientation::VERTICAL); - list->add_widget(std::make_unique<Label>(&get_theme().body_font, "Tint color", get_color_theme().text_color)); + list->add_widget(std::make_unique<Label>(&get_theme().body_font, "Accent color", get_color_theme().text_color)); auto tint_color_radio_button = std::make_unique<RadioButton>(&get_theme().body_font, RadioButton::Orientation::HORIZONTAL); tint_color_radio_button_ptr = tint_color_radio_button.get(); tint_color_radio_button->add_item("Red", "amd"); diff --git a/src/main.cpp b/src/main.cpp index 17a73a5..ffaf596 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -182,6 +182,7 @@ int main(int argc, char **argv) { // that uses pid sandboxing. Replace this with a better method once we no longer rely on linux global hotkeys on some platform. // TODO: This method doesn't work when disabling hotkeys and the method below with pidof gsr-ui doesn't work in flatpak. // What do? creating a pid file doesn't work in flatpak either. + // TODO: This doesn't work in flatpak when disabling hotkeys. if(is_gsr_ui_virtual_keyboard_running() || gsr::pidof("gsr-ui", getpid()) != -1) { gsr::Rpc rpc; if(rpc.open("gsr-ui") && rpc.write("show_ui\n", 8)) { |