mirror of
https://github.com/blahai/nyx.git
synced 2025-06-18 11:47:00 -04:00
a bunch of hm stuff I cba to split into diff commits
This commit is contained in:
parent
cd751d53c0
commit
ce0cc5229c
13 changed files with 100 additions and 393 deletions
|
@ -1,10 +0,0 @@
|
|||
general {
|
||||
col.active_border = rgba(DFE2EF39)
|
||||
col.inactive_border = rgba(8C909F30)
|
||||
}
|
||||
|
||||
misc {
|
||||
background_color = rgba(0F131CFF)
|
||||
}
|
||||
|
||||
windowrulev2 = bordercolor rgba(ADC6FFAA) rgba(ADC6FF77),pinned:1
|
|
@ -2,12 +2,7 @@
|
|||
wayland.windowManager.hyprland.settings = {
|
||||
exec-once = [
|
||||
"${pkgs.swww}/bin/swww-daemon --format xrgb"
|
||||
"${pkgs.mpvpaper}/bin/mpvpaper DP-1 -f -o 'loop panscan=1.0' ~/Pictures/wallpapers/videos/current"
|
||||
"${pkgs.ags}/bin/ags &"
|
||||
"${pkgs.floorp}/bin/floorp"
|
||||
"${pkgs.vesktop}/bin/vesktop"
|
||||
"${pkgs.hyprland}/bin/hyprctl setcursor Bibata-Modern-Classic 24"
|
||||
|
||||
"ags"
|
||||
];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
{ pkgs, config, inputs, ... }: {
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
|
||||
bindm = [
|
||||
"Super, mouse:272, movewindow"
|
||||
"Super, mouse:273, resizewindow"
|
||||
];
|
||||
|
||||
bindm = [ "Super, mouse:272, movewindow" "Super, mouse:273, resizewindow" ];
|
||||
|
||||
bind = [
|
||||
"Super, mouse_up, workspace, +1"
|
||||
|
@ -12,37 +9,31 @@
|
|||
|
||||
"Super+Shift, S, togglespecialworkspace"
|
||||
|
||||
"Super, R, exec, ${pkgs.anyrun}/bin/anyrun"
|
||||
"Super, W, exec, ${pkgs.floorp}/bin/floorp"
|
||||
"Super, Q, exec, ${pkgs.foot}/bin/foot"
|
||||
"Super, C, killactive"
|
||||
"Super, V, togglefloating"
|
||||
"Super, E, exec, ${pkgs.nautilus}/bin/nautilus -w"
|
||||
"SUPERALT, V, exec, pkill fuzzel || cliphist list | fuzzel --no-fuzzy --icon-theme=candy-icons --background-color=1A1513dd --text-color=F8D4D2ff --match-color=FFB3B1ff --border-width=2 --border-radius=15 --border-color=EB8A89ff --selection-color=585b70ff --selection-text-color=F8D4D2ff --selection-match-color=FFB3B1ff --font='Lexend' --prompt='>> ' --dmenu | cliphist decode | wl-copy"
|
||||
"SUPERALT, V, exec, pkill fuzzel || cliphist list | fuzzel --icon-theme=candy-icons --background-color=1A1513dd --text-color=F8D4D2ff --match-color=FFB3B1ff --border-width=2 --border-radius=15 --border-color=EB8A89ff --selection-color=585b70ff --selection-text-color=F8D4D2ff --selection-match-color=FFB3B1ff --font='Lexend' --prompt='>> ' --dmenu | cliphist decode | wl-copy"
|
||||
|
||||
"Super, L, exec, ${pkgs.hyprlock}/bin/hyprlock"
|
||||
|
||||
# AGS
|
||||
"Super, Tab, exec, ags -t 'toggleAppsWindow()'"
|
||||
"Super, A, exec, ags -t "
|
||||
"Super, D, exec, ags -t sidebar"
|
||||
"Control+Super, R, exec, pkill ags ; ags &"
|
||||
"Control+Super, T, exec, ~/.config/ags/scripts/color_generation/switchwall.sh"
|
||||
"Super, X, exec, for ((i=0; i<$(hyprctl monitors -j | jq length); i++)); do ags -t 'session''$i'; done"
|
||||
|
||||
# recording and ss stuff
|
||||
"Super, S, exec, pkill slurp || grimblast --freeze copysave area -"
|
||||
"Super, S, exec, pkill slurp || grimblast --freeze copy area"
|
||||
|
||||
|
||||
] ++ map (n: "Alt, ${toString n}, exec, movetoworkspacesilent ${toString (
|
||||
if n == 0
|
||||
then 10
|
||||
else n
|
||||
)}") [1 2 3 4 5 6 7 8 9 0]
|
||||
++ map (n: "Super, ${toString n}, exec, workspace, ${toString (
|
||||
if n == 0
|
||||
then 10
|
||||
else n
|
||||
)}") [1 2 3 4 5 6 7 8 9 0];
|
||||
# ags stuff
|
||||
"Super + Control, R, exec, pkill ags; ags"
|
||||
"Super, Tab, exec, ags -t launcher"
|
||||
"Super, X, exec, ags -t powermenu"
|
||||
|
||||
] ++ map (n:
|
||||
"Alt, ${toString n}, movetoworkspacesilent, ${
|
||||
toString (if n == 0 then 10 else n)
|
||||
}") [ 1 2 3 4 5 6 7 8 9 0 ] ++ map (n:
|
||||
"Super, ${toString n}, workspace, ${
|
||||
toString (if n == 0 then 10 else n)
|
||||
}") [ 1 2 3 4 5 6 7 8 9 0 ];
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue