Compare commits
2 Commits
5cfa457ce6
...
82c134a5ba
Author | SHA1 | Date |
---|---|---|
Leni Aniva | 82c134a5ba | |
Leni Aniva | 359ab04faa |
|
@ -3,11 +3,25 @@
|
|||
|
||||
# Programs that keep binary data in .config need to be excluded
|
||||
borg
|
||||
dockstation
|
||||
gimp
|
||||
qBittorrent
|
||||
Signal
|
||||
Slack
|
||||
|
||||
# Programs which require machine-specific data or cache in their rc files
|
||||
blender
|
||||
discord
|
||||
dolphinrc
|
||||
gwenviewrc
|
||||
gh
|
||||
katerc
|
||||
spectaclerc
|
||||
systemd
|
||||
trashrc
|
||||
vlcrc
|
||||
zoom.conf
|
||||
zoomus.conf
|
||||
|
||||
# Doom-emacs manages this automatically (can also be placed in ~/.emacs)
|
||||
emacs
|
||||
|
|
89
README.org
89
README.org
|
@ -1,4 +1,7 @@
|
|||
#+title: Desktop Environment for Mellite
|
||||
#+title: Cross-Platform Configuration Files
|
||||
|
||||
This is a list of cross-platform configuration files which can be placed in
|
||||
~.config~ directory and enabled at will.
|
||||
|
||||
* Installation
|
||||
|
||||
|
@ -10,7 +13,50 @@ git remote add origin $SOURCE
|
|||
git pull origin main
|
||||
#+end_src
|
||||
|
||||
* Login Manager
|
||||
** Doom emacs
|
||||
|
||||
Install via (can also be placed in ~.emacs~ directory)
|
||||
#+begin_src bash
|
||||
git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.config/emacs
|
||||
~/.config/emacs/bin/doom sync
|
||||
~/.config/emacs/bin/doom env
|
||||
#+end_src
|
||||
|
||||
** Fish
|
||||
|
||||
Install and set the default shell to ~fish~.
|
||||
|
||||
** Utilities
|
||||
|
||||
- ~alacritty~: terminal emulator
|
||||
|
||||
Note that in order to set this as the default terminal, you may need to put
|
||||
the following in ~~/.config/kdeglobals~:
|
||||
#+begin_src
|
||||
[General]
|
||||
TerminalApplication
|
||||
#+end_src
|
||||
- ~mpd~: Music player daemon
|
||||
#+begin_src sh
|
||||
systemctl enable --user mpd
|
||||
systemctl start --user mpd
|
||||
#+end_src
|
||||
Optionally, install ~mpc~
|
||||
- ~cantata~: Controls mpd (other clients are acceptable too)
|
||||
- ~btop~/~htop~: Process monitor
|
||||
|
||||
*** Screenfetch
|
||||
|
||||
- ~neofetch~: Screenfetch
|
||||
- ~macchina~ (aur): Another screenfetch
|
||||
|
||||
* Hyprland Desktop Environment
|
||||
|
||||
** Login Manager
|
||||
|
||||
The login manager is not managed by this configuration but mentioned here since
|
||||
it interacts with the desktop environment. For ~hyprland~, ~sddm~ is
|
||||
recommended.
|
||||
|
||||
- ~sddm~: Enable ~sddm.service~
|
||||
|
||||
|
@ -19,12 +65,12 @@ git pull origin main
|
|||
theme comes with ~plasma-workspace~ which is very bloated to install, so
|
||||
consider some of the alternative themes.
|
||||
|
||||
* Fonts
|
||||
** Fonts
|
||||
|
||||
- ~otf-font-awesome~: Needed for ~waybar~ to render icons
|
||||
- Noto Sans/Serif: System font
|
||||
|
||||
* Hyprland
|
||||
** Hyprland
|
||||
|
||||
Note: Setup does not work with NVIDIA GPU without some tweaks.
|
||||
|
||||
|
@ -53,41 +99,28 @@ convert $IN \
|
|||
|
||||
The command for changing keyboard layouts is handled by ~fcitx5~.
|
||||
|
||||
* Utilities
|
||||
** Utilities
|
||||
|
||||
- ~alacritty~: terminal emulator
|
||||
|
||||
Note that in order to set this as the default terminal, you may need to put
|
||||
the following in ~~/.config/kdeglobals~:
|
||||
#+begin_src
|
||||
[General]
|
||||
TerminalApplication
|
||||
#+end_src
|
||||
- ~wofi~: finding programs, drop in replacement for ~rofi~
|
||||
- ~grimblast~: Screenshot engine
|
||||
- ~dolphin~: File explorer
|
||||
- ~swaylock-effects~: A simple lockscreen
|
||||
- ~mpd~: Music player daemon
|
||||
#+begin_src sh
|
||||
systemctl enable --user mpd
|
||||
systemctl start --user mpd
|
||||
#+end_src
|
||||
Optionally, install ~mpc~
|
||||
- ~cantata~: Controls mpd (other clients are acceptable too)
|
||||
- ~wl-clipboard~: Provides copying
|
||||
- ~btop~/~htop~: Process monitor
|
||||
- ~blueman~: Bluetooth connector
|
||||
|
||||
** Configuration
|
||||
*** Configuration
|
||||
|
||||
- ~lxappearance~: Used to configure GTK3 themes
|
||||
- ~nwg-look~: Configures cursor
|
||||
|
||||
** Diagnostics
|
||||
|
||||
- ~wev~: Wayland event interceptor useful for determining keybinds
|
||||
- ~neofetch~: Screenfetch
|
||||
- ~macchina~ (aur): Another screenfetch
|
||||
|
||||
* Troubleshooting
|
||||
* Dot Files
|
||||
|
||||
All the configurations which must appear as dot files are not included:
|
||||
- ~.bashrc~
|
||||
- ~.vimrc~: Workaround is to install NeoVim
|
||||
- ~.spacemacs~
|
||||
The following default files are not included for the same reason:
|
||||
- ~.astylerc~
|
||||
- ~.clang-format~
|
||||
- ~.latexmkrc~
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
# Automatically generated or machine specific variables
|
||||
fish_variables
|
||||
|
||||
# Machine specific fishd
|
||||
fishd.*
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/fish
|
||||
|
||||
# Disable the greeting
|
||||
set fish_greeting
|
||||
|
||||
## Application-specific configurations
|
||||
|
||||
# opam
|
||||
if test -e ~/.opam/opam-init/init.fish
|
||||
source ~/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true
|
||||
end
|
||||
|
||||
# direnv/envrc
|
||||
if type -q direnv
|
||||
direnv hook fish | source
|
||||
end
|
|
@ -0,0 +1,33 @@
|
|||
# This file is automatically generated by the fish.
|
||||
# Do NOT edit it directly, your changes will be overwritten.
|
||||
SET __fish_classic_git_prompt_initialized:\x1d
|
||||
SET __fish_init_2_39_8:\x1d
|
||||
SET __fish_init_2_3_0:\x1d
|
||||
SET fish_color_autosuggestion:b2b2b2
|
||||
SET fish_color_cancel:\x2dr
|
||||
SET fish_color_command:ffaf00
|
||||
SET fish_color_comment:5C9900
|
||||
SET fish_color_cwd:green
|
||||
SET fish_color_cwd_root:red
|
||||
SET fish_color_end:005fff
|
||||
SET fish_color_error:ff5f00
|
||||
SET fish_color_escape:bryellow\x1e\x2d\x2dbold
|
||||
SET fish_color_history_current:\x2d\x2dbold
|
||||
SET fish_color_host:normal
|
||||
SET fish_color_match:\x2d\x2dbackground\x3dbrblue
|
||||
SET fish_color_normal:normal
|
||||
SET fish_color_operator:bryellow
|
||||
SET fish_color_param:00afd7
|
||||
SET fish_color_quote:00d7af
|
||||
SET fish_color_redirection:7CB02C
|
||||
SET fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SET fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SET fish_color_status:red
|
||||
SET fish_color_user:brgreen
|
||||
SET fish_color_valid_path:\x2d\x2dunderline
|
||||
SET fish_greeting:\x1d
|
||||
SET fish_key_bindings:fish_default_key_bindings
|
||||
SET fish_pager_color_completion:\x1d
|
||||
SET fish_pager_color_description:B3A06D\x1eyellow
|
||||
SET fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SET fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/fish
|
||||
|
||||
function fish_mode_prompt --description 'Displays the current vi mode'
|
||||
# Do nothing if not in vi mode
|
||||
if test "$fish_key_bindings" = "fish_vi_key_bindings"
|
||||
switch $fish_bind_mode
|
||||
case default
|
||||
set_color --bold red
|
||||
echo -n 🅽
|
||||
case insert
|
||||
set_color --bold green
|
||||
echo -n 🅸
|
||||
case replace_one
|
||||
set_color --bold green
|
||||
echo -n 🆁
|
||||
case visual
|
||||
set_color --bold brblue
|
||||
echo -n 🆅
|
||||
end
|
||||
set_color normal
|
||||
echo -n ' '
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
#!/bin/fish
|
||||
|
||||
set PROMPTDIRS "~":$HOME
|
||||
|
||||
#
|
||||
# This function takes the $PROMPTDIRS variable and tries to shorten the
|
||||
# input (i.e. $argv[1]) w.r.t. the variable.
|
||||
#
|
||||
# e.g. If $PROMPTDIRS contains the pair $PR:$HOME/Projects,
|
||||
#
|
||||
# (prompt_abbr ~/Projects/Applications)
|
||||
#
|
||||
# will show "$PR/Applications", and ~/Projects will be converted to $PR.
|
||||
#
|
||||
# To set multiple $PROMPTDIRS entry, use successive (where $ABBR is some
|
||||
# directory to be abbreviated)
|
||||
#
|
||||
# set PROMPTDIRS \$ABBR:$ABBR $PROMPTDIRS
|
||||
#
|
||||
# with the outermost directory being set first.
|
||||
#
|
||||
function prompt_abbr
|
||||
set in $argv[1]
|
||||
|
||||
for d in $PROMPTDIRS
|
||||
set -l kv (string split -m 1 ":" $d)
|
||||
|
||||
switch "$in"
|
||||
case "$kv[2]/*"
|
||||
set in (string replace $kv[2] $kv[1] $in)
|
||||
break
|
||||
case "$kv[2]"
|
||||
set in "$kv[1]"
|
||||
break
|
||||
case "*"
|
||||
end
|
||||
end
|
||||
echo "$in"
|
||||
end
|
||||
|
||||
function fish_prompt
|
||||
# set_color white
|
||||
# echo -n '['
|
||||
|
||||
set -l FishStatusCodeCache $status
|
||||
|
||||
set_color -o 00FF00
|
||||
echo -n (whoami)
|
||||
|
||||
set_color normal
|
||||
echo -n '@'
|
||||
|
||||
set_color AFD75F
|
||||
echo -n (hostname)
|
||||
|
||||
set_color white
|
||||
echo -n ':'
|
||||
|
||||
set_color 8787FF
|
||||
echo -n (prompt_abbr $PWD)
|
||||
|
||||
set_color 5F87D7
|
||||
echo -n (__fish_vcs_prompt)
|
||||
|
||||
if test $FishStatusCodeCache -eq 0
|
||||
#set_color 18C412
|
||||
else
|
||||
set_color E84505
|
||||
echo -n " [$FishStatusCodeCache]"
|
||||
end
|
||||
|
||||
# set_color white
|
||||
# echo -n "]"
|
||||
|
||||
set_color -o white
|
||||
echo -n "> "
|
||||
set_color normal
|
||||
end
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/fish
|
||||
|
||||
function fish_right_prompt
|
||||
set_color grey
|
||||
printf (date '+%H:%M:%S')
|
||||
set_color normal
|
||||
end
|
||||
|
Loading…
Reference in New Issue