dotfiles dotfiles dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add discord update script to nushell config

+7
+7
config/nushell/config.nu
··· 39 39 40 40 def gp [] { sudo gpclient --fix-openssl connect $env.VPN_GATEWAY } 41 41 def virt [] { sudo /usr/bin/modprobe v4l2loopback exclusive_caps=1 card_label=OBS Virtual Camera } 42 + def dsu [] { 43 + rm -r /opt/DiscordDevelopment/*; 44 + wget https://discord.com/api/download/canary?platform=linux&format=tar.gz -O discord.tar.gz; 45 + tar -xvf *.tar.gz; 46 + mv DiscordCanary/* /opt/DiscordDevelopment/; 47 + rm *.tar.gz DiscordCanary -r; 48 + } 42 49 def c [] { cosmic-session } 43 50 def h [] { dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland; start-hyprland }