Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,13 @@ install_fd() {

install_rofi_greenclip() {
install_package rofi
get_internet_file "https://github.com/erebe/greenclip/releases/download/v4.2/greenclip" /tmp/greenclip
sudo install /tmp/greenclip /usr/local/bin
(
local tmp
tmp=$(mktemp -d)
trap 'rm -rf -- "$tmp"' EXIT
get_internet_file "https://github.com/erebe/greenclip/releases/download/v4.2/greenclip" "$tmp/greenclip"
sudo install "$tmp/greenclip" /usr/local/bin
)
}

install_kitty_terminfo() {
Expand Down Expand Up @@ -546,8 +551,11 @@ auto_start_terminal() {
}

create_gruvbox_terminal_profile() {
get_prestobuntu_file "create-gruvbox" /tmp/create-gruvbox
bash /tmp/create-gruvbox
local tmp
tmp=$(mktemp -d)
get_prestobuntu_file "create-gruvbox" "$tmp/create-gruvbox"
bash "$tmp/create-gruvbox"
rm -rf "$tmp"
Comment on lines +554 to +558
}

_systemctl() { sudo systemctl "$@" ; }
Expand Down