This commit is contained in:
zervo 2025-03-22 17:14:14 +01:00
parent 22f135784d
commit 0a03993128
4 changed files with 10 additions and 6 deletions

View file

@ -26,7 +26,7 @@ env = EDITOR,neovim # Set neovim as default editor.
################ ################
#env = AQ_TRACE,1 # Enables verbose logging. #env = AQ_TRACE,1 # Enables verbose logging.
#env = AQ_DRM_DEVICE,CardsHere # Explicitly define DRM devices to use. Colon-separated list of paths, with the first being the primary. E.g. /dev/dri/card1:/dev/dri/card0 env = AQ_DRM_DEVICE,/dev/dri/card0:/dev/dri/card1 # Explicitly define DRM devices to use. Colon-separated list of paths, with the first being the primary. E.g. /dev/dri/card1:/dev/dri/card0
#env = AQ_MPGU_NO_EXPLICIT,1 # Disables explicit syncing on mgpu buffers. #env = AQ_MPGU_NO_EXPLICIT,1 # Disables explicit syncing on mgpu buffers.
#env = AQ_NO_MODIFIERS,1 # Disables modifiers for DRM buffers. #env = AQ_NO_MODIFIERS,1 # Disables modifiers for DRM buffers.

View file

@ -100,6 +100,9 @@ bind = $mainMod SHIFT, S, movetoworkspace, special:magic
# Scroll through existing workspaces with mainMod + scroll. # Scroll through existing workspaces with mainMod + scroll.
bind = $mainMod, mouse_down, workspace, e+1 bind = $mainMod, mouse_down, workspace, e+1
bind = $mainMod, mouse_up, workspace, e-1 bind = $mainMod, mouse_up, workspace, e-1
# Move current workspace to next monitor.
bind = $mainMod SHIFT, comma, movecurrentworkspacetomonitor, l #left
bind = $mainMod SHIFT, period, movecurrentworkspacetomonitor, r #right
# MULTIMEDIA BINDS: # MULTIMEDIA BINDS:

View file

@ -1,9 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
sleep 1 sleep 1
killall xdg-desktop-portal-hyprland killall -e xdg-desktop-portal-hyprland
killall xdg-desktop-portal-gnome killall xdg-desktop-portal-gnome
killall xdg-desktop-portal-kde killall xdg-desktop-portal-kde
killall xdg-desktop-portal-lxqt killall xdg-desktop-portal-lxqt
killall xdg-desktop-portal-xapp
killall xdg-desktop-portal-wlr killall xdg-desktop-portal-wlr
killall xdg-desktop-portal killall xdg-desktop-portal
sleep 1 sleep 1

View file

@ -15,7 +15,7 @@
// LAYOUT: Choose the order of the modules // LAYOUT: Choose the order of the modules
"modules-left": [ "modules-left": [
"power-profiles-daemon", //"power-profiles-daemon",
"hyprland/workspaces", "hyprland/workspaces",
"clock", "clock",
"custom/media" "custom/media"
@ -198,7 +198,7 @@
"network": { "network": {
// "interface": "wlp2*", // (Optional) To force the use of this interface // "interface": "wlp2*", // (Optional) To force the use of this interface
"format-wifi": "{essid} ({signalStrength}%)  ", "format-wifi": "{essid} ({signalStrength}%)  ",
"format-ethernet": "{ipaddr}/{cidr} 󰈀", "format-ethernet": "{ipaddr}/{cidr} 󰈀",
"tooltip-format": "{ifname} via {gwaddr} 󰛳", "tooltip-format": "{ifname} via {gwaddr} 󰛳",
"format-linked": "{ifname} (No IP) 󰛵", "format-linked": "{ifname} (No IP) 󰛵",
"format-disconnected": "Disconnected ⚠", "format-disconnected": "Disconnected ⚠",