This commit is contained in:
2025-10-24 10:53:43 +02:00
parent 28441df095
commit 2fb3eb1f52
6 changed files with 50 additions and 1 deletions

2
.config/code-flags.conf Normal file
View File

@ -0,0 +1,2 @@
--enable-features=UseOzonePlatform
--ozone-platform=wayland

View File

@ -0,0 +1,2 @@
--enable-features=UseOzonePlatform
--ozone-platform=wayland

View File

@ -8,5 +8,13 @@
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
<match target="font">
<test qual="any" name="family">
<string>Aptos</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>

View File

@ -50,6 +50,7 @@ exec-once = waybar
# Open programs on special workspaces
exec-once = [ workspace special:term silent] $terminal
exec-once = [ workspace special:browser silent] $browser "https://web.whatsapp.com" "https://mail.google.com/mail/u/0/\##inbox/\##wasteside\##container-wasteside"
exec-once = [ workspace special:browser silent] gnome-calendar
exec-once = [ workspace special:music silent] $terminal -e spotify_player
exec-once = [ workspace special:todo silent] clickup
exec-once = [ workspace special:files silent] $fileManager
@ -194,7 +195,7 @@ input {
# https://wiki.hyprland.org/Configuring/Variables/#gestures
gestures {
workspace_swipe = false
}
# Example per-device config
@ -336,6 +337,9 @@ windowrulev2 = float,title:^(.*Extension: Bitwarden.*)$
# Always center ClickUp command bar
windowrulev2 = center, title:ClickUp Command Bar
# Dont use floating mode for freerdp
windowrulev2 = tile, class:xfreerdp
# Open audio settings in floating mode
windowrulev2 = float, class:org.pulseaudio.pavucontrol
windowrulev2 = size 500 1000, class:org.pulseaudio.pavucontrol

View File

@ -0,0 +1,17 @@
# Disable all monitor sources (e.g. output mirrors) so they don't appear as input devices
monitor.rules = [
{
matches = [
{
device.class = "monitor"
}
]
actions = {
update-props = {
device.nick = "Please Be Disabled"
device.disabled = true
device.description = "Disabled Monitor Source"
}
}
}
]