Compare commits
5 Commits
cc9f38c71c
...
f4aedf7b5e
Author | SHA1 | Date | |
---|---|---|---|
f4aedf7b5e | |||
f51cc0049a | |||
c01529a599 | |||
121f02c785 | |||
f6cd98e458 |
@@ -37,7 +37,6 @@ function y
|
|||||||
end
|
end
|
||||||
|
|
||||||
zoxide init --cmd j fish | source
|
zoxide init --cmd j fish | source
|
||||||
# [ -f /usr/share/autojump/autojump.fish ]; and source /usr/share/autojump/autojump.fish
|
|
||||||
|
|
||||||
if status is-interactive
|
if status is-interactive
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
@@ -125,3 +124,5 @@ end
|
|||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
set -g fish_greeting ""
|
||||||
|
@@ -40,5 +40,5 @@ prepend_keymap = [
|
|||||||
{ on = [ "g", "/" ], run = "cd /", desc = "Go to /" },
|
{ on = [ "g", "/" ], run = "cd /", desc = "Go to /" },
|
||||||
{ on = [ "g", "m" ], run = "cd /run/media/$USER", desc = "Go to /run/media" },
|
{ on = [ "g", "m" ], run = "cd /run/media/$USER", desc = "Go to /run/media" },
|
||||||
{ on = [ "g", "<Space>" ], run = "cd --interactive", desc = "Go to interactively" },
|
{ on = [ "g", "<Space>" ], run = "cd --interactive", desc = "Go to interactively" },
|
||||||
{ on = [ "g", "c" ], run = "plugin vcs-files", desc = "Show Git file changes" },
|
{ on = [ "g", "-" ], run = "plugin vcs-files", desc = "Show Git file changes" },
|
||||||
]
|
]
|
||||||
|
23
install
23
install
@@ -24,7 +24,7 @@ echo "
|
|||||||
==> Installing Hyprland
|
==> Installing Hyprland
|
||||||
"
|
"
|
||||||
sleep 2
|
sleep 2
|
||||||
yay -S --noconfirm --noremovemake hyprland hypridle hyprfreeze hyprlock aylurs-gtk-shell-git brightnessctl pulsemixer xdg-desktop-portal-hyprland cliphist grimblast wl-clipboard polkit-gnome swaybg polkit-kde-agent grim
|
yay -S --noconfirm --noremovemake hyprland hypridle hyprfreeze hyprlock aylurs-gtk-shell brightnessctl pulsemixer xdg-desktop-portal-hyprland cliphist grimblast wl-clipboard polkit-gnome swaybg polkit-kde-agent grim rofi cpio
|
||||||
|
|
||||||
# Audio, drivers
|
# Audio, drivers
|
||||||
echo "
|
echo "
|
||||||
@@ -55,7 +55,7 @@ echo "
|
|||||||
==> Installing fonts...
|
==> Installing fonts...
|
||||||
"
|
"
|
||||||
sleep 2
|
sleep 2
|
||||||
yay -S --noconfirm --noremovemake adobe-source-code-pro-fonts gnome-font-viewer gnome-characters ttf-fantasque-nerd ttf-jetbrains-mono-nerd ttf-fluentui-system-icons ttf-comfortaa
|
yay -S --noconfirm --noremovemake adobe-source-code-pro-fonts gnome-font-viewer gnome-characters ttf-fantasque-nerd ttf-jetbrains-mono-nerd ttf-fluentui-system-icons ttf-comfortaa candy-icons
|
||||||
|
|
||||||
# Programming
|
# Programming
|
||||||
echo "
|
echo "
|
||||||
@@ -69,7 +69,7 @@ echo "
|
|||||||
==> Installing nvim...
|
==> Installing nvim...
|
||||||
"
|
"
|
||||||
sleep 2
|
sleep 2
|
||||||
yay -S --noconfirm --noremovemake neovim lua lua-language-server tree-sitter texlab stylua luarocks jdtls perl julia pyright vscode-css-languageserver vscode-html-languageserver bash-language-server python-black proselint asmfmt typescript-language-server shfmt sass
|
yay -S --noconfirm --noremovemake neovim lua lua-language-server tree-sitter tree-sitter-cli texlab stylua luarocks jdtls perl julia pyright vscode-css-languageserver vscode-html-languageserver bash-language-server python-black proselint asmfmt typescript-language-server shfmt sass
|
||||||
sudo npm i -g @vue/typescript-plugin
|
sudo npm i -g @vue/typescript-plugin
|
||||||
|
|
||||||
# Internet
|
# Internet
|
||||||
@@ -84,7 +84,7 @@ echo "
|
|||||||
==> Installing other utilities...
|
==> Installing other utilities...
|
||||||
"
|
"
|
||||||
sleep 2
|
sleep 2
|
||||||
yay -S --noconfirm --noremovemake okular vlc nextcloud-client p7zip zip unzip gnome-keyring noto-fonts pavucontrol light fastfetch bashtop hugo uxplay upower gdu dig nwg-look serpl fcitx5 qalculate-gtk openconnect light blueman xdg-desktop-portal-termfilechooser-hunkyburrito-git lazygit
|
yay -S --noconfirm --noremovemake okular vlc nextcloud-client p7zip zip unzip noto-fonts pavucontrol light fastfetch bashtop hugo uxplay upower gdu dig nwg-look serpl fcitx5 qalculate-gtk openconnect light blueman xdg-desktop-portal-termfilechooser-hunkyburrito-git lazygit
|
||||||
|
|
||||||
# LaTeX
|
# LaTeX
|
||||||
echo "
|
echo "
|
||||||
@@ -108,6 +108,16 @@ sudo cp ./system/greetd/config.toml /etc/greetd/config.toml
|
|||||||
chsh -s /bin/fish
|
chsh -s /bin/fish
|
||||||
sudo systemctl enable greetd
|
sudo systemctl enable greetd
|
||||||
|
|
||||||
|
cd ./build/
|
||||||
|
npm i
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd ./config/astal/
|
||||||
|
mkdir node_modules && cd node_modules && ln -sf /usr/share/astal/gjs/ ./astal
|
||||||
|
cd ../../config/ags/notifications/
|
||||||
|
mkdir node_modules && cd node_modules && ln -sf /usr/share/astal/gjs/ ./astal
|
||||||
|
cd ~/projects/active/dotfiles/
|
||||||
|
|
||||||
./setup
|
./setup
|
||||||
|
|
||||||
cd ~/projects/active/
|
cd ~/projects/active/
|
||||||
@@ -115,6 +125,11 @@ git clone https://git.janishutz.com/janishutz/nvim
|
|||||||
cd nvim
|
cd nvim
|
||||||
./nvim-install.sh
|
./nvim-install.sh
|
||||||
|
|
||||||
|
xdg-settings set default-web-browser librewolf.desktop
|
||||||
|
xdg-mime default org.pwmt.zathura.desktop application/pdf
|
||||||
|
sudo systemctl disable rustdesk
|
||||||
|
hyprpm update
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
==> DONE!
|
==> DONE!
|
||||||
|
@@ -4,5 +4,6 @@ cd ~/NextCloud/Documents/Private/PC/
|
|||||||
unzip ./oreo_spark_blue_cursors.zip
|
unzip ./oreo_spark_blue_cursors.zip
|
||||||
sudo mv ./oreo_spark_blue_cursors /usr/share/icons
|
sudo mv ./oreo_spark_blue_cursors /usr/share/icons
|
||||||
|
|
||||||
cd monterey-grub-theme/
|
cd ~/NextCloud/Documents/Private/PC/monterey-grub-theme/
|
||||||
./install.sh
|
sudo chmod +x ./install.sh
|
||||||
|
sudo ./install.sh
|
||||||
|
Reference in New Issue
Block a user