Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opixelum/dotfiles
Dotfiles of my superuser OS (I use Arch btw)
https://github.com/opixelum/dotfiles
archlinux config hyprland zsh
Last synced: 24 days ago
JSON representation
Dotfiles of my superuser OS (I use Arch btw)
- Host: GitHub
- URL: https://github.com/opixelum/dotfiles
- Owner: opixelum
- License: mit
- Created: 2024-12-28T15:29:57.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-12T20:55:03.000Z (26 days ago)
- Last Synced: 2025-01-12T21:31:26.604Z (26 days ago)
- Topics: archlinux, config, hyprland, zsh
- Language: Shell
- Homepage:
- Size: 58.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles
Config files of my superuser OS (I use Arch btw).
## Packages
- Alacritty (Rust terminal);
- Conda (package & environment manager);
- Hadoop & Spark zsh config (for school);
- JetBrains Toolbox & PyCharm
- NVM (Node version manager);
- Obsidian
- Oh My Zsh (better Zsh):
- Powerlevel10k (beautiful command line);
- Youtube Music
- Zoxide (smarter `cd` command).## Wrong scaling per application
Electron-based and Chromium-based applications don't use Wayland by default.
In order to have the same scaling as the global setting, enforce each
application to do so:1. Edit the `.desktop` file of the application.
You can your applications in either `/opt/` or `~/.local/share/applications`.
2. Add `--enable-features=UseOzonePlatform --ozone-platform=wayland` at the end
of the `Exec` line.
Example for Discord Canary:```text
[Desktop Entry]
Name=Discord Canary
...
Exec=/usr/bin/discord-canary --enable-features=UseOzonePlatform --ozone-platform=wayland
...
```
If you don't find the .desktop file, it can maybe be edited in the settings of
the application.
Look up on internet how you can enforce Wayland for your application.