add vesktop

This commit is contained in:
Frost-Phoenix 2024-06-22 21:22:40 +02:00
parent 528434f8bd
commit 550110708e
3 changed files with 15 additions and 3 deletions

View file

@ -10,4 +10,8 @@
pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-gtk
]; ];
}; };
environment.systemPackages = with pkgs; [
xwaylandvideobridge
];
} }

View file

@ -2,11 +2,12 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
discord discord
vesktop
# (discord.override { # (discord.override {
# withVencord = true; # withVencord = true;
# }) # })
]; ];
xdg.configFile."Vencord/themes/custom.css".text = '' xdg.configFile."vesktop/themes/custom.css".text = ''
/** /**
* @name Catppuccin Mocha * @name Catppuccin Mocha
* @author winston#0001 * @author winston#0001

View file

@ -7,7 +7,8 @@
exec-once = [ exec-once = [
"systemctl --user import-environment &" "systemctl --user import-environment &"
"hash dbus-update-activation-environment 2>/dev/null &" "hash dbus-update-activation-environment 2>/dev/null &"
"dbus-update-activation-environment --systemd &" # "dbus-update-activation-environment --systemd &"
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP &"
"nm-applet &" "nm-applet &"
"wl-clip-persist --clipboard both" "wl-clip-persist --clipboard both"
"swaybg -m fill -i $(find ~/Pictures/wallpapers/ -maxdepth 1 -type f) &" "swaybg -m fill -i $(find ~/Pictures/wallpapers/ -maxdepth 1 -type f) &"
@ -138,7 +139,7 @@
"$mainMod SHIFT, F, fullscreen, 1" "$mainMod SHIFT, F, fullscreen, 1"
"$mainMod, Space, togglefloating," "$mainMod, Space, togglefloating,"
"$mainMod, D, exec, pkill wofi || wofi --show drun" "$mainMod, D, exec, pkill wofi || wofi --show drun"
"$mainMod SHIFT, D, exec, hyprctl dispatch exec '[workspace 4 silent] discord'" "$mainMod SHIFT, D, exec, hyprctl dispatch exec '[workspace 4 silent] vesktop'"
"$mainMod SHIFT, S, exec, hyprctl dispatch exec '[workspace 5 silent] SoundWireServer'" "$mainMod SHIFT, S, exec, hyprctl dispatch exec '[workspace 5 silent] SoundWireServer'"
"$mainMod, Escape, exec, swaylock" "$mainMod, Escape, exec, swaylock"
"$mainMod SHIFT, Escape, exec, shutdown-script" "$mainMod SHIFT, Escape, exec, shutdown-script"
@ -280,6 +281,12 @@
"float,title:^(branchdialog)$" "float,title:^(branchdialog)$"
"float,title:^(Confirm to replace files)$" "float,title:^(Confirm to replace files)$"
"float,title:^(File Operation Progress)$" "float,title:^(File Operation Progress)$"
"opacity 0.0 override,class:^(xwaylandvideobridge)$"
"noanim,class:^(xwaylandvideobridge)$"
"noinitialfocus,class:^(xwaylandvideobridge)$"
"maxsize 1 1,class:^(xwaylandvideobridge)$"
"noblur,class:^(xwaylandvideobridge)$"
]; ];
}; };