♻️ refactor(xdg): pictures dir is now pointing towards Pictures instead of Images
This commit is contained in:
parent
b7400498ea
commit
44b6750a8b
7 changed files with 6 additions and 7 deletions
|
@ -5,7 +5,6 @@ set -xg XDG_DATA_HOME $HOME/.local/share
|
|||
set -xg XDG_STATE_HOME $HOME/.local/state
|
||||
set -xg XDG_BIN_HOME $HOME/.local/bin
|
||||
set -xg XDG_SCRIPT_HOME $HOME/.local/script
|
||||
set -xg XDG_SCREENSHOTS_HOME $HOME/Images/Screenshots
|
||||
|
||||
# Respect XDG Specification
|
||||
set -xg CONAN_USER_HOME $XDG_CONFIG_HOME
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
file:///home/matt/Downloads Downloads
|
||||
file:///home/matt/Documents Documents
|
||||
file:///home/matt/Images Images
|
||||
file:///home/matt/Pictures Images
|
||||
file:///home/matt/Music Music
|
||||
file:///home/matt/Games Games
|
||||
file:///home/matt/Videos Videos
|
||||
|
|
|
@ -9,7 +9,7 @@ return {
|
|||
},
|
||||
cond = vim.env.KITTY_SCROLLBACK_NVIM == nil,
|
||||
opts = {
|
||||
save_path = "/home/matt/Images/Capturas/Codigo", -- FIX: Need to find a way for this to work inside vscode and kitty
|
||||
save_path = "/home/matt/Pictures/Screenshots/Code", -- FIX: Need to find a way for this to work inside vscode and kitty
|
||||
title = "CodeSnap.nvim",
|
||||
code_font_family = "JetBrainsMono Nerd Font",
|
||||
watermark_font_family = "JetBrainsMono Nerd Font",
|
||||
|
|
|
@ -7,7 +7,7 @@ fi
|
|||
# variables
|
||||
theme="$HOME/.config/rofi/scripts/screenshot/style.rasi"
|
||||
hyprshot="$HOME/.config/hypr/scripts/hyprshot"
|
||||
save_dir="$HOME/Images/Capturas/PC"
|
||||
save_dir="$HOME/Pictures/Screenshots/PC"
|
||||
filename="captura-$(date +%Y-%m-%d-%s).png"
|
||||
command="$hyprshot -o $save_dir -f $filename $extra_args"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
screenshots_dir="$HOME/Imagenes/Capturas/PC"
|
||||
screenshots_dir=$HOME/Pictures/Screenshots/PC
|
||||
theme="$HOME/.config/rofi/scripts/wallpaper/style.rasi"
|
||||
|
||||
build_theme() {
|
||||
|
|
|
@ -9,7 +9,7 @@ XDG_DESKTOP_DIR="$HOME/Desktop"
|
|||
XDG_DOCUMENTS_DIR="$HOME/Documents"
|
||||
XDG_DOWNLOAD_DIR="$HOME/Downloads"
|
||||
XDG_MUSIC_DIR="$HOME/Music"
|
||||
XDG_PICTURES_DIR="$HOME/Images"
|
||||
XDG_PICTURES_DIR="$HOME/Pictures"
|
||||
XDG_PUBLICSHARE_DIR="$HOME/Public"
|
||||
XDG_TEMPLATES_DIR="$HOME/Templates"
|
||||
XDG_VIDEOS_DIR="$HOME/Videos"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
image_folder="$HOME/Images/"
|
||||
image_folder="$HOME/Pictures/"
|
||||
video_folder="$HOME/Videos/"
|
||||
|
||||
# Utils
|
||||
|
|
Loading…
Add table
Reference in a new issue