shell qol update

This commit is contained in:
js0ny 2025-02-03 09:23:00 +00:00
parent 0bc474161a
commit 38d3bf7ae9
6 changed files with 31 additions and 2 deletions

View file

@ -69,13 +69,30 @@ $menu = wofi
# exec-once = $terminal # exec-once = $terminal
# exec-once = nm-applet & # exec-once = nm-applet &
# exec-once = waybar & hyprpaper & mako & systemctl --user start hyprpolkitagent & fcitx5 & albert # exec-once = waybar & hyprpaper & mako & systemctl --user start hyprpolkitagent & fcitx5 & albert
# Top Bar
exec-once = waybar & exec-once = waybar &
# Notifications
exec-once = mako & exec-once = mako &
# wallpapers
exec-once = hyprpaper & exec-once = hyprpaper &
# Authentication agent
exec-once = systemctl --user start hyprpolkitagent exec-once = systemctl --user start hyprpolkitagent
# Input Method
exec-once = fcitx5 & exec-once = fcitx5 &
# Clipboard history (called by wofi)
exec-once = wl-paste --watch cliphist store exec-once = wl-paste --watch cliphist store
# exec-once = QT_SCALE_FACTOR=1 albert & # exec-once = QT_SCALE_FACTOR=1 albert &
# Bluetooth Manager
exec-once = blueman-tray &
# Time Tracker
exec-once = aw-qt &
# https://github.com/hyprwm/Hyprland/discussions/5867
exec = gsettings set org.gnome.desktop.interface gtk-theme "Breeze-Dark" # for GTK3 apps
exec = gsettings set org.gnome.desktop.interface color-scheme "prefer-dark" # for GTK4 apps
env = QT_QPA_PLATFORMTHEME,qt6ct # for Qt apps
# https://discuss.kde.org/t/the-themes-i-use-with-qt6ct-are-not-applied-in-discover/17118
env = QT_QUICK_CONTROLS_STYLE,org.kde.desktop

View file

@ -1,4 +1,5 @@
[General] [General]
UseTabForSwitchingSplitView=true
Version=202 Version=202
ViewPropsTimestamp=2024,12,10,0,19,35.931 ViewPropsTimestamp=2024,12,10,0,19,35.931
@ -14,4 +15,4 @@ MenuBar=Disabled
ToolBarsMovable=Disabled ToolBarsMovable=Disabled
[PreviewSettings] [PreviewSettings]
Plugins=appimagethumbnail,avif,blenderthumbnail,comicbookthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,heif,jxl,jpegthumbnail,kraorathumbnail,windowsimagethumbnail,windowsexethumbnail,mobithumbnail,opendocumentthumbnail,gsthumbnail,rawthumbnail,svgthumbnail,gdk-pixbuf-thumbnailer,cursorthumbnail,imagethumbnail,fontthumbnail,directorythumbnail,textthumbnail,ffmpegthumbs,audiothumbnail Plugins=appimagethumbnail,audiothumbnail,avif,blenderthumbnail,comicbookthumbnail,cursorthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,directorythumbnail,fontthumbnail,heif,imagethumbnail,jpegthumbnail,jxl,kraorathumbnail,windowsexethumbnail,windowsimagethumbnail,mobithumbnail,opendocumentthumbnail,gsthumbnail,rawthumbnail,svgthumbnail,textthumbnail,ffmpegthumbs,gdk-pixbuf-thumbnailer

View file

@ -42,7 +42,8 @@
;; If you use `org' and don't want your org files in the default location below, ;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads! ;; change `org-directory'. It must be set before org loads!
(setq org-directory "~/Documents/OrgFiles/") (setq org-directory "~/OrgFiles/")
(setq org-roam-directory "~/OrgFiles/roam/")
;; Whenever you reconfigure a package, make sure to wrap your config in an ;; Whenever you reconfigure a package, make sure to wrap your config in an

View file

@ -47,6 +47,12 @@ function tv
touch $argv[1] && nvim $argv[1] touch $argv[1] && nvim $argv[1]
end end
# Create a new file, if the directory does not exist, create it
# Arg: a file name
function mt
mkdir -p (dirname $argv[1]) && touch $argv[1]
end
# Use neovide as gVim # Use neovide as gVim
abbr --add gvi "neovide" abbr --add gvi "neovide"

View file

@ -23,6 +23,7 @@ function tv { param ( [string] $filename) New-Item $filename && nvim $filename }
function cdls { param( [string] $dirname) Set-Location $dirname && Get-ChildItem } function cdls { param( [string] $dirname) Set-Location $dirname && Get-ChildItem }
function zls { param( [string] $dirname) z $dirname && Get-ChildItem } function zls { param( [string] $dirname) z $dirname && Get-ChildItem }
function zl { param( [string] $dirname) z $dirname && lsd } function zl { param( [string] $dirname) z $dirname && lsd }
function mt { param( [string] $dirname) New-Item -ItemType File -Name $dirname -Force }
### Dev ### ### Dev ###

View file

@ -53,6 +53,9 @@ tc(){
tv(){ tv(){
touch $1 && nvim $1 touch $1 && nvim $1
} }
mt(){
mkdir -p $(dirname $1) && touch $1
}
alias update="source $DOTFILES/scripts/update.zsh" alias update="source $DOTFILES/scripts/update.zsh"