diff --git a/src/pages/settings/SettingsPage.tsx b/src/pages/settings/SettingsPage.tsx index befb025..e8f651d 100644 --- a/src/pages/settings/SettingsPage.tsx +++ b/src/pages/settings/SettingsPage.tsx @@ -1,13 +1,33 @@ import { - Focusable, + Dropdown, + Focusable, staticClasses, } from "decky-frontend-lib"; import { VFC } from "react"; const SettingsPage: VFC = () => { return ( - -

This page is STUB!

+ + +
+
Default Shell
+
Change the default shell of the terminal
+
+
+ {console.log(e.data)}} + rgOptions={[{ + label: "/bin/bash", + data: "/bin/bash" + }, { + label: "/bin/zsh", + data: "/bin/zsh" + }]} /> +
+
); };