Compare commits
4 Commits
edfb9c49ea
...
d9d7a98457
| Author | SHA1 | Date | |
|---|---|---|---|
| d9d7a98457 | |||
| e60437e244 | |||
| 905be7b581 | |||
| 753fc37901 |
@@ -1,6 +1,10 @@
|
|||||||
# Stow-away!
|
# Stow-away!
|
||||||
This repository ensures that the custom `OmarchyOS` is not filled with filth called `bloat`. It also adds its own feature that strongly adheres with the Linux principle (e.g., TUIs replacement for GUIs).
|
This repository ensures that the custom `OmarchyOS` is not filled with filth called `bloat`. It also adds its own feature that strongly adheres with the Linux principle (e.g., TUIs replacement for GUIs).
|
||||||
|
|
||||||
|
# Problems
|
||||||
|
* `.xsession` and `~/.local/bin/switch-session.sh` original scripting needs to be revised for `OmarchyOS`. Manual interventions work well.
|
||||||
|
* `OmarchyOS` may overwrite custom `./omarchy-bin/` files such as **default browser**.
|
||||||
|
|
||||||
# Scripting
|
# Scripting
|
||||||
[🚧 under construction 🚧]
|
[🚧 under construction 🚧]
|
||||||
|
|
||||||
@@ -8,7 +12,7 @@ This repository ensures that the custom `OmarchyOS` is not filled with filth cal
|
|||||||
|
|
||||||
## Custom Applications Installed [🚧]
|
## Custom Applications Installed [🚧]
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -Sy yazi stow 7zip python-pipx tickrs flatpak \
|
sudo pacman -Sy networkmanager yazi stow 7zip python-pipx tickrs flatpak \
|
||||||
pipx install todoman khal vdirsyncer
|
pipx install todoman khal vdirsyncer
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -18,6 +22,27 @@ sudo pacman -Rs 1password-cli 1password-beta omarchy-chromium lazydocker ufw-doc
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Interventions
|
## Interventions
|
||||||
|
### Wi-fi Back-end (For steam not detecting Wi-Fi)
|
||||||
|
Tells the `networkmanager` to use `iwd` for Wi-Fi instead.
|
||||||
|
```sh
|
||||||
|
sudo -e /etc/NetworkManager/conf.d/wifi_backend.conf
|
||||||
|
```
|
||||||
|
Paste this inside:
|
||||||
|
```toml
|
||||||
|
[device]
|
||||||
|
wifi.backend=iwd
|
||||||
|
```
|
||||||
|
Stops old one:
|
||||||
|
```sh
|
||||||
|
sudo systemctl stop systemd-networkd
|
||||||
|
sudo systemctl disable systemd-networkd
|
||||||
|
```
|
||||||
|
Starts and enables NetworkManager:
|
||||||
|
```sh
|
||||||
|
sudo systemctl enable NetworkManager
|
||||||
|
sudo systemctl start NetworkManager
|
||||||
|
```
|
||||||
|
|
||||||
### Proper `Vdirsync` Implementation
|
### Proper `Vdirsync` Implementation
|
||||||
Must sync (usually q5m) to avoid outdated information.
|
Must sync (usually q5m) to avoid outdated information.
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# FIXME: "It works on my machine!" Look at ChorinOS/gamescope-session github for more config info
|
||||||
|
|
||||||
|
# Force Output
|
||||||
|
OUTPUT_CONNECTOR="DP-1"
|
||||||
@@ -62,3 +62,5 @@ bindd = SUPER SHIFT, F, File manager, exec, uwsm-app -- yazi
|
|||||||
|
|
||||||
# Web App URL
|
# Web App URL
|
||||||
|
|
||||||
|
# Session Switcher Keybinding
|
||||||
|
bindd = SUPER, F12, Switch to SteamOS, exec, ~/.local/bin/switch-session.sh
|
||||||
|
|||||||
@@ -46,3 +46,6 @@ env = XDG_MENU_PREFIX, plasma-
|
|||||||
# env = WLR_DRM_NO_ATOMIC, 1
|
# env = WLR_DRM_NO_ATOMIC, 1
|
||||||
# ?
|
# ?
|
||||||
# env = WLR_NO_HARDWARE_CURSORS, 1
|
# env = WLR_NO_HARDWARE_CURSORS, 1
|
||||||
|
|
||||||
|
# Session Switcher Keybinding
|
||||||
|
bind = SUPER, F12, exec, /home/kenji/.local/bin/switch-session.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user