Updates
This commit is contained in:
parent
22f135784d
commit
0a03993128
4 changed files with 10 additions and 6 deletions
|
@ -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.
|
||||||
|
|
||||||
|
@ -90,4 +90,4 @@ env = LIBVA_DRIVER_NAME,nvidia
|
||||||
env = GTK_THEME,Adwaita:dark # Override GTK theme, useful if you want to avoid appearance tools such as lxappearance or nwg-look.
|
env = GTK_THEME,Adwaita:dark # Override GTK theme, useful if you want to avoid appearance tools such as lxappearance or nwg-look.
|
||||||
#env = XCURSOR_THEME,someTheme # Set cursor theme. The theme needs to be installed and readable by your user.
|
#env = XCURSOR_THEME,someTheme # Set cursor theme. The theme needs to be installed and readable by your user.
|
||||||
env = XCURSOR_SIZE,24 # Set cursor size. Why? Because: https://wiki.hyprland.org/FAQ/
|
env = XCURSOR_SIZE,24 # Set cursor size. Why? Because: https://wiki.hyprland.org/FAQ/
|
||||||
env = HYPRCURSOR_SIZE,24
|
env = HYPRCURSOR_SIZE,24
|
||||||
|
|
|
@ -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:
|
||||||
|
@ -119,4 +122,4 @@ bindl = , XF86AudioPlay, exec, playerctl play-pause # (u
|
||||||
bindl = , XF86AudioPrev, exec, playerctl previous # Play previous media.
|
bindl = , XF86AudioPrev, exec, playerctl previous # Play previous media.
|
||||||
bind = $mainMod, Z, exec, playerctl previous # Play previous media. (alternative)
|
bind = $mainMod, Z, exec, playerctl previous # Play previous media. (alternative)
|
||||||
bind = $mainMod, X, exec, playerctl play-pause # (un)Pause current media. (alternative)
|
bind = $mainMod, X, exec, playerctl play-pause # (un)Pause current media. (alternative)
|
||||||
bind = $mainMod, C, exec, playerctl next # Skip to next media in queue. (alternative)
|
bind = $mainMod, C, exec, playerctl next # Skip to next media in queue. (alternative)
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 ⚠",
|
||||||
|
|
Loading…
Add table
Reference in a new issue