XR for Universal Blue and Fedora Atomic Desktops
vr fedora-atomic linux
3
fork

Configure Feed

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

Update install script for Nushell v0.111.0

+3 -2
+3 -2
install.nu
··· 5 5 use std log 6 6 7 7 const self: path = path self . 8 + let nu_lib_dir = $NU_LIB_DIRS | first 8 9 9 10 def main [ 10 11 prefix: string = "~/.local" ··· 26 27 mkdir $lib_dir 27 28 cp -r ($self | path join 'src' 'atomic-xr') $lib_dir 28 29 if $install_library { 29 - if $force {rm -f ($NU_LIB_DIRS | first | path join "atomic-xr")} 30 - ln -s ($lib_dir | path join "atomic-xr") ($NU_LIB_DIRS | first) 30 + if $force {rm -f ($nu_lib_dir | path join "atomic-xr")} 31 + ln -s ($lib_dir | path join "atomic-xr") $nu_lib_dir 31 32 } 32 33 33 34 mkdir ($bin | path dirname)