mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
fix(console): GIO_EXTRA_MODULES
This commit is contained in:
parent
6d43f929b5
commit
5aab6a4837
3 changed files with 21 additions and 2 deletions
|
|
@ -1,6 +1,11 @@
|
||||||
# [[file:../../Console.org::*Fish][Fish:1]]
|
# [[file:../../Console.org::*Fish][Fish:1]]
|
||||||
if [ "$TERM" != "dumb" ]; and type -q starship
|
if [ "$TERM" != "dumb" ]; and type -q starship;
|
||||||
starship init fish | source
|
starship init fish | source
|
||||||
|
else
|
||||||
|
function fish_prompt -d "Write out the prompt"
|
||||||
|
printf '%s@%s %s%s%s > ' $USER $hostname \
|
||||||
|
(set_color $fish_color_cwd) (basename (pwd)) (set_color normal)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
# Fish:1 ends here
|
# Fish:1 ends here
|
||||||
|
|
||||||
|
|
|
||||||
4
.profile
4
.profile
|
|
@ -63,6 +63,10 @@ export GUIX_PACKAGE_PATH=~/guix-packages
|
||||||
export GUIX_LOCPATH=$HOME/.guix-extra-profiles/console/console/lib/locale
|
export GUIX_LOCPATH=$HOME/.guix-extra-profiles/console/console/lib/locale
|
||||||
# Guix settings:4 ends here
|
# Guix settings:4 ends here
|
||||||
|
|
||||||
|
# [[file:Console.org::*Guix settings][Guix settings:5]]
|
||||||
|
export GIO_EXTRA_MODULES=""
|
||||||
|
# Guix settings:5 ends here
|
||||||
|
|
||||||
# [[file:Console.org::*Other package managers][Other package managers:1]]
|
# [[file:Console.org::*Other package managers][Other package managers:1]]
|
||||||
if [ -d "$HOME/.cask" ]; then
|
if [ -d "$HOME/.cask" ]; then
|
||||||
export PATH="/home/pavel/.cask/bin:$PATH"
|
export PATH="/home/pavel/.cask/bin:$PATH"
|
||||||
|
|
|
||||||
12
Console.org
12
Console.org
|
|
@ -119,6 +119,11 @@ Locale settings
|
||||||
#+begin_src sh
|
#+begin_src sh
|
||||||
export GUIX_LOCPATH=$HOME/.guix-extra-profiles/console/console/lib/locale
|
export GUIX_LOCPATH=$HOME/.guix-extra-profiles/console/console/lib/locale
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Somehow LibreOffice doesn't work without the following:
|
||||||
|
#+begin_src sh
|
||||||
|
export GIO_EXTRA_MODULES=""
|
||||||
|
#+end_src
|
||||||
** Other package managers
|
** Other package managers
|
||||||
Using other package managers with Guix requires some extra work.
|
Using other package managers with Guix requires some extra work.
|
||||||
|
|
||||||
|
|
@ -478,8 +483,13 @@ init_yc () {
|
||||||
|
|
||||||
Launch starship
|
Launch starship
|
||||||
#+begin_src fish
|
#+begin_src fish
|
||||||
if [ "$TERM" != "dumb" ]; and type -q starship
|
if [ "$TERM" != "dumb" ]; and type -q starship;
|
||||||
starship init fish | source
|
starship init fish | source
|
||||||
|
else
|
||||||
|
function fish_prompt -d "Write out the prompt"
|
||||||
|
printf '%s@%s %s%s%s > ' $USER $hostname \
|
||||||
|
(set_color $fish_color_cwd) (basename (pwd)) (set_color normal)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue