зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 04:44:18 +02:00
m
Этот коммит содержится в:
родитель
7675a7501a
Коммит
2ead074863
2
fin/card/discount/nova.txt
Обычный файл
2
fin/card/discount/nova.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
nova.by
|
||||
https://www.a1.by/ru/novacard
|
||||
@ -5,5 +5,20 @@ https://wezfurlong.org/wezterm/features.html
|
||||
https://wezfurlong.org/wezterm/config/files.html
|
||||
https://wezfurlong.org/wezterm/config/lua/config/index.html
|
||||
|
||||
dpkg -L wezterm
|
||||
/etc
|
||||
/etc/profile.d
|
||||
/etc/profile.d/wezterm.sh
|
||||
/usr
|
||||
/usr/share
|
||||
/usr/share/applications
|
||||
/usr/share/applications/org.wezfurlong.wezterm.desktop
|
||||
/usr/bin
|
||||
/usr/bin/strip-ansi-escapes
|
||||
/usr/bin/open-wezterm-here
|
||||
/usr/bin/wezterm-gui
|
||||
/usr/bin/wezterm-mux-server
|
||||
/usr/bin/wezterm
|
||||
|
||||
2023
|
||||
https://coffee-web.ru/blog/get-the-most-out-of-your-terminal-a-comprehensive-guide-to-wezterm-configuration/
|
||||
|
||||
2
os/x-ui/wallpaper/swww.txt
Обычный файл
2
os/x-ui/wallpaper/swww.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
https://github.com/Horus645/swww
|
||||
https://aur.archlinux.org/packages/swww
|
||||
@ -1,3 +1,4 @@
|
||||
https://wall.alphacoders.com/
|
||||
http://hdw.eweb4.com/categories/animals/
|
||||
http://www.desktopwallpapers4.me/
|
||||
http://www.wallpapers1920x1080.com/
|
||||
|
||||
@ -22,3 +22,12 @@ https://wearecommunity.io/events/integration-tests-in-java/talks/47164
|
||||
|
||||
Cracking Technical Interviews: Introduction
|
||||
https://wearecommunity.io/events/CDKEZVonm7/talks/67388
|
||||
|
||||
Deployment of Open LLM
|
||||
https://videoportal.epam.com/video/dYo3wjY3
|
||||
|
||||
How I use ChatGPT
|
||||
https://videoportal.epam.com/video/qJXewe7w
|
||||
|
||||
Linux Kernel Anatomy
|
||||
https://videoportal.epam.com/video/wY9rq1Jy
|
||||
|
||||
@ -92,3 +92,53 @@ package() {
|
||||
sudo install -vDm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
|
||||
}
|
||||
# vim:set ft=sh ts=2 sw=2 et:
|
||||
|
||||
|
||||
name="wezterm-bin"
|
||||
pkgname="wezterm"
|
||||
gives="wezterm"
|
||||
pkgver="20230712-072601-f4abf8fd"
|
||||
pkgdesc="A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"
|
||||
url="https://github.com/wez/wezterm/releases/download/${pkgver}/wezterm-${pkgver}.Ubuntu22.04.tar.xz"
|
||||
hash="3b03b75a26a30f2de28180d66c5556e5878f6f3320d79d12fb78ea486400b6c3"
|
||||
breaks=("${pkgname}-app")
|
||||
repology=("project: wezterm")
|
||||
maintainer="smokeythemonkey <smokeythemonkey@posteo.net>"
|
||||
|
||||
package() {
|
||||
# Install Binaries
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/usr/bin/wezterm" -t "${pkgdir}/usr/bin/"
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/usr/bin/open-wezterm-here" "${pkgdir}/usr/bin/"
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/usr/bin/strip-ansi-escapes" "${pkgdir}/usr/bin/"
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/usr/bin/wezterm-gui" "${pkgdir}/usr/bin/"
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/usr/bin/wezterm-mux-server" "${pkgdir}/usr/bin/"
|
||||
|
||||
# Copy Icons and plugins
|
||||
sudo cp -r "${SRCDIR}/wezterm/usr/share/"* "/usr/share/"
|
||||
|
||||
# Install .desktop file
|
||||
sudo install -Dm644 "${SRCDIR}/wezterm/usr/share/applications/org.wezfurlong.wezterm.desktop" "${pkgdir}/usr/share/applications/org.wezfurlong.wezterm.desktop"
|
||||
|
||||
# Install wezterm.sh script
|
||||
sudo install -Dm755 "${SRCDIR}/wezterm/etc/profile.d/wezterm.sh" "${pkgdir}/etc/profile.d/wezterm.sh"
|
||||
}
|
||||
|
||||
post_install() {
|
||||
# Run wezterm.sh script to hook up shell integration
|
||||
sudo "/etc/profile.d/wezterm.sh"
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
# Remove additional files
|
||||
sudo rm -f "/usr/share/bash-completions/wezterm"
|
||||
sudo rm -f "/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png"
|
||||
sudo rm -f "/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml"
|
||||
sudo rm -f "/usr/share/nautilus-python/extensions/wezterm-nautilus.py"
|
||||
sudo rm -rf "/usr/share/wezterm/"
|
||||
sudo rm -f "/usr/share/zsh/functions/Completion/Unix/_wezterm"
|
||||
|
||||
# Delete wezterm config
|
||||
if ask "Do you want to delete wezterm config files?" N; then
|
||||
rm -rf "${homedir}/.config/.wezterm/"
|
||||
fi
|
||||
}
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
https://gitlab.com/inspire1/digital-platform/domain-services/notification-domain/notification-service/-/merge_requests/300
|
||||
https://gitlab.com/inspire1/digital-platform/domain-services/notification-domain/notification-service/-/pipelines/1072267119
|
||||
|
||||
https://wezfurlong.org/wezterm/features.html#available-features
|
||||
|
||||
? github/nushell
|
||||
https://github.com/x-way/iptables-tracer
|
||||
lightdm/font-size
|
||||
|
||||
@ -105,6 +105,10 @@ https://github.com/AhmedSaadi0/my-hyprland-config
|
||||
https://github.com/kotontrion/dotfiles
|
||||
https://github.com/JaKooLit/Hyprland-Dots
|
||||
https://github.com/obsqrbtz/dotfiles
|
||||
https://github.com/kannakalyan05/hyprland
|
||||
https://github.com/justinlime/dotfiles
|
||||
https://github.com/justinlime/dotfiles/tree/main/non-nix
|
||||
https://github.com/linuxmobile/kaku/
|
||||
|
||||
eww
|
||||
https://www.youtube.com/watch?v=AmVqENmVu8w
|
||||
@ -239,6 +243,8 @@ https://github.com/siduck/dotfiles
|
||||
nvim
|
||||
https://github.com/samthepacman/IdempotentDots/tree/main/root/config/neovim
|
||||
https://github.com/chadcat7/kodo
|
||||
https://github.com/justinlime/dotfiles/tree/main/nvim
|
||||
https://github.com/justinlime/dotfiles/blob/main/nvim/install.sh
|
||||
|
||||
yabai
|
||||
https://github.com/RishTheFish21/.files
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user