Compare commits

...

27 Commits

Author SHA1 Message Date
1bb836dee1 pythonpad : env applied. 2025-12-05 13:52:07 +09:00
218ca4bbd7 emacs : use built-in org-mode 2025-08-13 20:22:12 +09:00
a6759eff18 script : nvim 2025-08-13 20:21:51 +09:00
023a6d0c5b fish : atuin is out 2025-08-13 20:21:09 +09:00
aaee6aef92 emacs : org download location setup 2025-08-12 16:00:59 +09:00
b2b4dd33a5 zsh : python startup env 2025-08-12 16:00:36 +09:00
fc4538ac6e python pad 2025-08-12 16:00:23 +09:00
92c63e4949 pythonpad 2025-08-12 16:00:12 +09:00
45830fad57 fish : zsh to fish config. 2025-05-25 23:11:57 +09:00
7a7e38806d script : endeavouros to cachyOS 2025-05-25 23:11:28 +09:00
f8d47693c9 script : init linux 2025-05-22 22:47:19 +09:00
8d34b0f472 emacs : disable valign mode 2025-04-13 09:48:47 +09:00
8a0e52ab03 bspwm : add scratch pad 2025-03-19 16:26:05 +09:00
e559352d85 Merge remote-tracking branch 'origin/main' 2025-03-19 07:17:00 +09:00
e335f8e40c emacs : pdf-tool disable when windows env. 2025-03-16 22:50:21 +09:00
baea7cf95e emacs : tramp config 2025-03-16 18:07:48 +09:00
631b54fbcd emacs/bspwm : update daemon binding 2025-03-16 12:48:19 +09:00
7bc66f159d Merge remote-tracking branch 'origin/main' 2025-03-16 10:27:56 +09:00
e8418bd7af emacs : org noter - roam integration 2025-03-16 10:27:43 +09:00
24f816edd9 emacs : daemon configuration 2025-03-15 16:58:03 +09:00
8e17f130e7 copilot & gpt packages add 2025-03-08 12:08:53 +09:00
e363c90761 emacs : org noter is added, pdf view 2025-02-18 13:29:04 +09:00
5ebf4d23bb wsltty : restore wsltty config 2025-02-18 10:10:08 +09:00
b6dc73188c Merge remote-tracking branch 'origin/main' 2025-02-18 10:07:15 +09:00
5a98c1cb31 emacs : embark keybinding change, C-. is not work on ubuntu 2025-02-01 14:01:06 +09:00
cefeb45dce Merge branch 'main' of https://github.com/JaeUs3792/dotfiles 2024-09-23 22:00:06 +09:00
d10e8aa916 powershell font install scripts 2024-05-22 21:29:13 +09:00
21 changed files with 365 additions and 142 deletions

View File

@ -22,6 +22,8 @@ killall nm-applet && nm-applet &
killall volumeicon && volumeicon &
#killall conky
#sleep 3 && conky -c ~/.config/conky/conkyrc
emacsclient --eval '(kill-emacs)'
emacs --daemon
~/scripts/random_wallpaper.sh
@ -68,6 +70,8 @@ bspc config normal_private_border_color "$color1"
bspc rule -a Emacs state=tiled
# bspc rule -a \* state=tiled
bspc rule -a scpad sticky=on state=floating rectangle=1400x700+660+40
bspc rule -a pythonpad sticky=on state=floating rectangle=1400x700+660+40
# TODO heres polybar
if [[ $JUPCID == "HOME-DESKTOP" ]]; then

View File

@ -4,7 +4,6 @@
(defun custom-setup-fonts ()
"setup fonts..."
(when (display-graphic-p)
;; default font
(cl-loop for font in '("FiraCode Nerd Font Mono" "Jetbrains Mono"
"Source Code Pro" "DejaVu Sans Mono")
@ -33,14 +32,25 @@
when (font-installed-p font)
return (progn
(setq face-font-rescale-alist `((,font . 1.00)))
(set-fontset-font t '(#x1100 . #xffdc) (font-spec :family font))))))
(custom-setup-fonts)
(set-fontset-font t '(#x1100 . #xffdc) (font-spec :family font)))))
(when (display-graphic-p)
(custom-setup-fonts))
(add-hook 'window-setup-hook #'custom-setup-fonts)
(if (daemonp)
(add-hook 'after-make-frame-functions
(lambda (frame)
;; (setq doom-modeline-icon t)
(with-selected-frame frame
(custom-setup-fonts)
;; default transparency (85 . 85) or (100 . 100)
(set-frame-parameter (selected-frame) 'alpha '(85 . 85)))))
(custom-setup-fonts))
(setq initial-buffer-choice (lambda () (get-buffer "*dashboard*")))
;; select theme
(setq custom-theme-sel 'doom-one)
;; default transparency (85 . 85) or (100 . 100)
(set-frame-parameter (selected-frame) 'alpha '(85 . 85))
;; Org setup
(setq custom-org-directory "~/org"

View File

@ -7,6 +7,17 @@
(setq gptel-model "gpt-4o-mini")
(setq gptel-api-key custom-chatgpt-my-key))
(use-package org-ai
:straight t
:ensure t
:commands (org-ai-mode
org-ai-global-mode)
:init
(add-hook 'org-mode-hook #'org-ai-mode) ; enable org-ai in org-mode
(org-ai-global-mode) ; installs global keybindings on C-c M-a
:config
(setq org-ai-default-chat-model "gpt-4") ; if you are on the gpt-4 beta:
(org-ai-install-yasnippets)) ; if you are using yasnippet and want `ai` snippets
(provide 'init-chatgpt)
;;; init-chatgpt.el ends here

View File

@ -5,5 +5,9 @@
:ensure t)
;; :hook (prog-mode . copilot-mode))
(use-package copilot-chat
:straight (:host github :repo "chep/copilot-chat.el" :files ("*.el"))
:after (request org markdown-mode shell-maker))
(provide 'init-copilot)
;;; init-copilot.el ends here

View File

@ -123,5 +123,12 @@
:ensure t
:hook (after-init . global-so-long-mode))
;; remote edit
(use-package tramp
:ensure nil
:custom
(tramp-default-method "ssh")
(tramp-connection-timeout 5))
(provide 'init-edit)
;;; init-edit.el ends here.

View File

@ -4,7 +4,7 @@
(require 'init-custom)
(use-package org
:ensure nil ; built-in
:straight (:type built-in)
:custom-face (org-ellipsis ((t (:foreground unspecified))))
:pretty-hydra
;; See `org-structure-template-alist'
@ -239,6 +239,17 @@ prepended to the element after the #+HEADER: tag."
:config
(setq org-journal-dir (expand-file-name "journal/" org-directory))
(setq org-journal-file-type 'weekly))
(use-package org-noter
:straight t
:ensure t
:defer t
:config
(setq org-noter-always-create-frame nil
org-noter-hide-other nil
org-noter-notes-search-path '("~/org/notes")
org-noter-separate-notes-from-heading t
org-noter-highlight-selected-text t)
(org-noter-enable-org-roam-integration))
(use-package org-modern
:straight t
@ -258,13 +269,13 @@ prepended to the element after the #+HEADER: tag."
("DONE" :background "#C7C7C7" :foreground "#666666")
("KILL" :background "#C7C7C7" :foreground "#666666")))))
(use-package valign
:straight t
:ensure t
:defer t
:hook (org-mode . valign-mode)
:custom
(valign-fancy-bar t))
;; (use-package valign
;; :straight t
;; :ensure t
;; :defer t
;; :hook (org-mode . valign-mode)
;; :custom
;; (valign-fancy-bar t))
;; Auto-toggle Org LaTeX fragments
@ -303,23 +314,25 @@ prepended to the element after the #+HEADER: tag."
(use-package org-contrib ;; to use org-screenshot-take
:straight t
:ensure t
:defer t
:defer t)
(use-package org-attach-screenshot
:straight t
:ensure t
:defer t
:defer t)
(use-package org-download
:after org
:straight t
:ensure t
:defer t
:defer t)
:demand t
:init
(setq org-download-image-dir "./images")
(setq org-download-heading-lvl nil)
:config
(org-download-enable))
(use-package ob-latex-as-png
:straight t
:ensure t
:defer t
:ensure t)
:defer t)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Org roam ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

View File

@ -11,31 +11,32 @@
(org-mode . olivetti-mode))
:init (setq olivetti-body-width 0.62))
(use-package pdf-tools
:straight t
:ensure t
:defer t
:defines pdf-annot-activate-created-annotations
:hook ((pdf-tools-enabled . pdf-view-auto-slice-minor-mode)
(pdf-tools-enabled . pdf-isearch-minor-mode)
(pdf-tools-enabled . pdf-view-themed-minor-mode))
:mode ("\\.[pP][dD][fF]\\'" . pdf-view-mode)
:magic ("%PDF" . pdf-view-mode)
:bind (:map pdf-view-mode-map
("C-s" . isearch-forward))
:init
(pdf-tools-install)
:config
(setq-default pdf-view-display-size 'fit-page)
(setq-default pdf-view-resize-factor 1.1) ;; zoom in/out setting
(defun my/pdf-view-open-in-zathura ()
(interactive)
(save-window-excursion
(let ((current-file (buffer-file-name))
(current-page (number-to-string (pdf-view-current-page))))
(async-shell-command
(format "zathura -P %s \"%s\"" current-page current-file))))
(message "Sent to zathura")))
(unless ON-WINDOWS
(use-package pdf-tools
:straight t
:ensure t
:defer t
:defines pdf-annot-activate-created-annotations
:hook ((pdf-tools-enabled . pdf-view-auto-slice-minor-mode)
(pdf-tools-enabled . pdf-isearch-minor-mode))
;;(pdf-tools-enabled . pdf-view-themed-minor-mode))
:mode ("\\.[pP][dD][fF]\\'" . pdf-view-mode)
:magic ("%PDF" . pdf-view-mode)
:bind (:map pdf-view-mode-map
("C-s" . isearch-forward))
:init
(pdf-tools-install)
:config
(setq-default pdf-view-display-size 'fit-page)
(setq-default pdf-view-resize-factor 1.1) ;; zoom in/out setting
(defun my/pdf-view-open-in-zathura ()
(interactive)
(save-window-excursion
(let ((current-file (buffer-file-name))
(current-page (number-to-string (pdf-view-current-page))))
(async-shell-command
(format "zathura -P %s \"%s\"" current-page current-file))))
(message "Sent to zathura"))))
;; Recover last viewed position
(use-package pdf-view-restore

View File

@ -27,9 +27,7 @@
:straight t
:ensure t
:init
(if (display-graphic-p)
(load-theme custom-theme-sel t)
(load-theme 'doom-gruvbox t))
(load-theme custom-theme-sel t)
:config
(doom-themes-visual-bell-config))
(use-package doom-modeline

View File

@ -81,7 +81,10 @@
:straight t
:ensure t
:defer t
:bind (("C-." . embark-act))
:bind (("C-," . embark-act)
:map minibuffer-local-map
("C-c C-c" . embark-collect)
("C-c C-e" . embark-export))
:config
(with-eval-after-load 'embark-consult
(add-hook 'embark-collect-mode-hook #'consult-preview-at-point-mode))

View File

@ -4,27 +4,93 @@ end
set fish_greeting
set VETHER_IP $(/bin/grep nameserver /etc/resolv.conf 2> /dev/null | /bin/tr -s ' ' | /bin/cut -d' ' -f2)
export DISPLAY=$VETHER_IP:10.0
# Format man pages
set -x MANROFFOPT "-c"
set -x MANPAGER "sh -c 'col -bx | bat -l man -p'"
# Set settings for https://github.com/franciscolourenco/done
set -U __done_min_cmd_duration 10000
set -U __done_notification_urgency_level low
## Environment setup
# Apply .profile: use this to put fish compatible .profile stuff in
if test -f ~/.fish_profile
source ~/.fish_profile
end
# Add ~/.local/bin to PATH
if test -d ~/.local/bin
if not contains -- ~/.local/bin $PATH
set -p PATH ~/.local/bin
end
end
## Functions
# Functions needed for !! and !$ https://github.com/oh-my-fish/plugin-bang-bang
function __history_previous_command
switch (commandline -t)
case "!"
commandline -t $history[1]; commandline -f repaint
case "*"
commandline -i !
end
end
function __history_previous_command_arguments
switch (commandline -t)
case "!"
commandline -t ""
commandline -f history-token-search-backward
case "*"
commandline -i '$'
end
end
if [ "$fish_key_bindings" = fish_vi_key_bindings ];
bind -Minsert ! __history_previous_command
bind -Minsert '$' __history_previous_command_arguments
else
bind ! __history_previous_command
bind '$' __history_previous_command_arguments
end
# Fish command history
function history
builtin history --show-time='%F %T '
end
## Aliases
alias ls='eza -al --color=always --group-directories-first --icons' # preferred listing
alias la='eza -a --color=always --group-directories-first --icons' # all files and dirs
alias ll='eza -l --color=always --group-directories-first --icons' # long format
alias lt='eza -aT --color=always --group-directories-first --icons' # tree listing
alias l.="eza -a | grep -e '^\.'" # show only dotfiles
alias big="expac -H M '%m\t%n' | sort -h | nl" # Sort installed packages according to size in MB
alias gitpkg='pacman -Q | grep -i "\-git" | wc -l' # List amount of -git packages
#pacman unlock
alias fixpacman="sudo rm /var/lib/pacman/db.lck"
# Get fastest mirrors
alias mirror="sudo cachyos-rate-mirrors"
# Cleanup orphaned packages
alias cleanup='sudo pacman -Rns (pacman -Qtdq)'
# Recent installed packages
alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"
# emacs
alias emupgrade="~/.emacs.d/bin/doom upgrade"
alias emsync="~/.emacs.d/bin/doom sync"
alias emd="emacs --daemon"
alias emdk="emacsclient --eval '(kill-emacs)'"
alias em="emacsclient -c -a 'emacs'"
alias emt="emacsclient -c -a 'emacs -nw'"
alias emtangle="emacs --batch -eval \"(require 'org)\" --eval '(org-babel-tangle-file \"~/.config/emacs/emacs.org\")'"
#neovim to vi
alias vi=nvim
alias vimdiff="nvim -d"
#alias cat=bat
#pacman unlock
alias paruunlock="sudo rm /var/lib/pacman/db.lck"
#grub update
alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
#youtube-dl
alias ytv-best="youtube-dl -f bestvideo+bestaudio "
#gpg for future uses
#verify signature for isos
#alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify"
@ -33,21 +99,8 @@ alias ytv-best="youtube-dl -f bestvideo+bestaudio "
#alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
#alias fix-gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
#alias fix-key="[ -d ~/.gnupg ] || mkdir ~/.gnupg ; cp /etc/pacman.d/gnupg/gpg.conf ~/.gnupg/ ; echo 'done'"
alias startsv="ssh odroid startsv"
alias stopsv="ssh odroid stopsv"
alias gpulls="pushd ~/.config/emacs && git pull && pushd ~/org && git pull && popd && popd"
# Changing "ls" to "exa"
alias ls='exa -al --color=always --group-directories-first' # my preferred listing
alias la='exa -a --color=always --group-directories-first' # all files and dirs
alias ll='exa -l --color=always --group-directories-first' # long format
alias lt='exa -aT --color=always --group-directories-first' # tree listing
alias l.='exa -a | egrep "^\."'
#figlet -w 100 "$hostname"
export PYTHONSTARTUP=/home/jaeus/scripts/my_imports.py
starship init fish | source
cat ~/.cache/wal/sequences &
#atuin init fish | source

View File

@ -2,10 +2,13 @@
super+Return
alacritty
super+shift+Return
~/scripts/scpad
super+shift+p
~/scripts/pythonpad
#Apps and programs
super+e
emacs --debug-init
#emacsclient -c -a 'emacs'
emacsclient -c -a 'emacs'
super+b
qutebrowser
super+f
@ -43,6 +46,12 @@ super+w
super+shift+r
bspc wm -r
# lock screen
super+shift+l
i3lock-fancy
# resize
super+alt+l
bspc node focused -z right 15 0

37
.minttyrc Normal file
View File

@ -0,0 +1,37 @@
# Dracula
ForegroundColour=248,248,242
BackgroundColour=40,42,54
Black=0,0,0
BoldBlack=104,104,104
Red=255,85,85
BoldRed=255,110,103
Green=80,250,123
BoldGreen=90,247,142
Yellow=241,250,140
BoldYellow=244,249,157
Blue=202,169,250
BoldBlue=202,169,250
Magenta=255,121,198
BoldMagenta=255,146,208
Cyan=139,233,253
BoldCyan=154,237,254
White=191,191,191
BoldWhite=230,230,230
Font=ComicShanns Nerd Font
FontHeight=12
Term=xterm-256color
Locale=ko_KR
Charset=UTF-8
FontSmoothing=default
AllowBlinking=no
BoldAsFont=no
CursorType=block
CursorBlinks=yes
BellTaskbar=no
BellType=0
BellFlash=no
FontWeight=400
FontIsBold=no
Transparency=medium

8
.zshrc
View File

@ -46,6 +46,12 @@ if [[ $JUPCID == "WSL" ]];then
fi
# python env
export PYTHONSTARTUP=~/scripts/my_imports.py
export PYTHONSTARTUPSCRIPT=~/scripts/my_imports.py
eval "$(starship init zsh)"
# pokemon-colorscripts --no-title -s -r
. "$HOME/.atuin/bin/env"
eval "$(atuin init zsh)"

View File

@ -0,0 +1,67 @@
#!/bin/bash
# essential packages
paru -S eza --noconfirm
# clone config
git clone https://github.com/JaeUs3792/dotfiles ~/.dotfiles
paru -S stow --noconfirm
cd ~/.dotfiles
stow .
# korean input
paru -S ibus-hangul
#ZSH
paru -S zsh starship --noconfirm
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc
# fish
paru -S fish starship bat --noconfirm
# neovim
paru -S neovim nvim-lazy --noconfirm
# git config
git config --global user.name "JaeYoo-Im"
git config --global user.email "cpu3792@gmail.com"
git config --global user.autocrlf input
# tmux
paru -S tmux --noconfirm
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
TMUX_PLUGIN_MANAGER_PATH=~/.config/tmux/plugins/tpm ~/.tmux/plugins/tpm/scripts/install_plugins.sh
TMUX_PLUGIN_MANAGER_PATH=~/.config/tmux/plugins/tpm ~/.tmux/plugins/tpm/bin/update_plugins all
# font
paru -S ttf-firacode-nerd ttf-mononoki-nerd otf-comicshanns-nerd ttf-times-new-roman ttf-nanum noto-fonts-emoji ttf-symbola noto-fonts-cjk --noconfirm
#syncthing
paru -S syncthing --noconfirm
sudo systemctl enable syncthing@jaeus.service
sudo systemctl start syncthing@jaeus.service
# express vpn
paru -S expressvpn-gui
sudo systemctl enable expressvpn
sudo systemctl start expressvpn
#emacs
paru -S emacs --noconfirm
paru -S texlive-basic texlive-langkorean --noconfirm
paru -S jupyterlab --noconfirm
paru -S zathura-pdf-mupdf
#verilator
paru -S verilator
# trilium
paru -S trilium-bin
# sourcegit
paru -S sourcegit-bin

View File

@ -1,69 +0,0 @@
#!/bin/sh
paru
paru -S stow trayer --noconfirm
# config file handling
rm ~/.config/polybar/config
rm ~/.zshrc ~/.bashrc ~/.xmonad/xmonad.hs
rm -rf ~/.config/alacritty ~/.xmonad/scripts
cd ~/.dotfiles
stow .
#ZSH
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc
# NUSHELL
#paru -S nushell
#nu ~/scripts/init_script_nushell.nu
#echo "Changing Shell to nushell"
#chsh -s /bin/nu # change shell
# FISH
#paru -S fish starship
#chsh -s /bin/fish
# neovim
paru -S neovim --noconfirm
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
nvim +PlugInstall +q +q
# git config
git config --global user.name "JaeYoo-Im"
git config --global user.email "cpu3792@gmail.com"
git config --global user.autocrlf input
# tmux
paru -S tmux --noconfirm
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
TMUX_PLUGIN_MANAGER_PATH=~/.config/tmux/plugins/tpm ~/.tmux/plugins/tpm/scripts/install_plugins.sh
TMUX_PLUGIN_MANAGER_PATH=~/.config/tmux/plugins/tpm ~/.tmux/plugins/tpm/bin/update_plugins all
# font
paru -S ttf-firacode-nerd ttf-nanum ttf-mononoki-nerd --noconfirm
# hangul
paru -S fcitx-hangul fcitx-configtool --noconfirm
# enpass
#paru -S enpass --noconfirm
#paru -S bitwarden --noconfirm
#paru -S green-tunnel --noconfirm
#emacs
paru -S ripgrep emacs --noconfirm
paru -S texlive-most texlive-lang --noconfirm
paru -S jupyterlab --noconfirm
paru -S zathura zathura-cb zathura-pdf-mupdf
#syncthing
paru -S syncthing --noconfirm
mkdir SyncThing
sudo systemctl enable syncthing@jaeus.service
# etc
paru -S figlet --noconfirm

21
scripts/install_fonts.ps1 Normal file
View File

@ -0,0 +1,21 @@
pushd c:\tools
$a = "FiraCode","ComicShannsMono","Mononoki"
foreach($i in $a){
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
}
$files = Get-ChildItem .\*.zip
mkdir Fonts
foreach($file in $files){
unzip -o $file -d .\Fonts
}
cp Fonts\*.ttf c:\windows\fonts
cp Fonts\*.otf c:\windows\fonts
popd

18
scripts/pythonpad Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
winclass="$(xdotool search --class pythonpad)";
if [ -z "$winclass" ]; then
PYTHONSTARTUP=/home/jaeus/scripts/my_imports.py alacritty --class pythonpad -e python
else
if [ ! -f /tmp/pythonpad ]; then
touch /tmp/pythonpad && xdo hide "$winclass"
elif [ -f /tmp/pythonpad ]; then
rm /tmp/pythonpad && xdo show "$winclass"
fi
fi

View File

@ -0,0 +1,3 @@
#!/bin/bash
yay -S python2-bin

18
scripts/scpad Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
winclass="$(xdotool search --class scpad)";
if [ -z "$winclass" ]; then
alacritty --class scpad
else
if [ ! -f /tmp/scpad ]; then
touch /tmp/scpad && xdo hide "$winclass"
elif [ -f /tmp/scpad ]; then
rm /tmp/scpad && xdo show "$winclass"
fi
fi

View File

@ -0,0 +1,6 @@
$a = "FiraCode","ComicShannsMono","Mononoki"
foreach($i in $a){
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
}

3
scripts/vivado_installlibs.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
yay -S ncurses5-compat-libs libxcrypt-compat libpng12 lib32-libpng12 gtk3 inetutils xorg-xlsclients cpio