Adds missing bootstrap packages
This commit is contained in:
parent
bc2caa6c11
commit
132f9d0636
3 changed files with 22 additions and 15 deletions
|
|
@ -99,11 +99,6 @@
|
|||
"keyColor": "green"
|
||||
},
|
||||
{
|
||||
"type": "display",
|
||||
"key": "│ └",
|
||||
"keyColor": "green"
|
||||
},
|
||||
{
|
||||
"type": "sound",
|
||||
"key": " AUDIO",
|
||||
"format": "{2}",
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<property name="last-side-pane" type="string" value="ThunarShortcutsPane"/>
|
||||
<property name="last-location-bar" type="string" value="ThunarLocationEntry"/>
|
||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_50_PERCENT"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="105,50,110,117,82,1214,50,50,332,50,50,76,50,401"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="117,50,124,117,82,1214,50,50,993,50,50,79,50,137"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
||||
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_CREATED,THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
confirm() {
|
||||
# call with a prompt string or use a default
|
||||
read -r -p "${1} [y/N] " response
|
||||
case "$response" in
|
||||
[yY][eE][sS] | [yY])
|
||||
1
|
||||
;;
|
||||
*)
|
||||
0
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
debug() {
|
||||
echo "Debug:"
|
||||
echo "XDG_SESSION_DESKTOP $XDG_SESSION_DESKTOP"
|
||||
|
|
@ -9,15 +22,14 @@ CYAN='\033[0;36m'
|
|||
NC='\033[0m'
|
||||
|
||||
# install dependencies
|
||||
echo -e "${CYAN}# Installing dependencies (general)${NC}"
|
||||
if confirm "Install dependencies (general)?"; then
|
||||
yay -S --needed neovim \
|
||||
nitrogen \
|
||||
kitty \
|
||||
btop \
|
||||
zoxide fzf \
|
||||
evremap \
|
||||
superfile \
|
||||
getnf
|
||||
superfile
|
||||
fi
|
||||
|
||||
if [ $XDG_SESSION_DESKTOP = "i3" ]; then
|
||||
echo -e "${CYAN}# Installing dependencies (for i3)${NC}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue