dotfiles dotfiles dotfiles
0
fork

Configure Feed

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

Change wallpaper target

Amazingca c0fdc09c 86c0aafe

+42 -1
+1 -1
config/hypr/hyprpaper.conf
··· 1 1 wallpaper { 2 2 monitor = 3 - path = /opt/backgrounds/orion_nebula_nasa_heic0601a.jpg 3 + path = ~/.config/hypr/wallpapers/orion_nebula_nasa_heic0601a.jpg 4 4 fit_mode = cover 5 5 }
+41
config/nushell/*
··· 1 + # config.nu 2 + # 3 + # Installed by: 4 + # version = "0.110.0" 5 + # 6 + # This file is used to override default Nushell settings, define 7 + # (or import) custom commands, or run any other startup tasks. 8 + # See https://www.nushell.sh/book/configuration.html 9 + # 10 + # Nushell sets "sensible defaults" for most configuration settings, 11 + # so your `config.nu` only needs to override these defaults if desired. 12 + # 13 + # You can open this file in your default editor using: 14 + # config nu 15 + # 16 + # You can also pretty-print and page through the documentation for configuration 17 + # options using: 18 + # config nu --doc | nu-highlight | less -R 19 + dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=cosmic 20 + 21 + $env.EDITOR = "helix" 22 + $env.config.buffer_editor = $env.EDITOR 23 + 24 + $env.GPG_TTY = (tty) 25 + 26 + $env.LANG = "en_US.UTF-8" 27 + 28 + $env.config.show_banner = false 29 + 30 + $env.PROMPT_INDICATOR = "$ " 31 + 32 + $env.PROMPT_COMMAND = { $"[(pwd | path basename)@(sys host | get hostname)]" } 33 + 34 + $env.config.table.mode = "psql" 35 + 36 + $env.VPN_GATEWAY = "" 37 + 38 + def gp [] { sudo gpclient --fix-openssl connect $env.VPN_GATEWAY } 39 + def virt [] { sudo /usr/bin/modprobe v4l2loopback exclusive_caps=1 card_label=OBS Virtual Camera } 40 + def c [] { cosmic-session } 41 + def h [] { dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland; start-hyprland }