diff options
Diffstat (limited to 'dotfiles/hyprland/.local')
94 files changed, 237 insertions, 6 deletions
diff --git a/dotfiles/hyprland/.local/bin/pinentry-fuzzel b/dotfiles/hyprland/.local/bin/pinentry-fuzzel index 4cbe6b7..5c64968 100755 --- a/dotfiles/hyprland/.local/bin/pinentry-fuzzel +++ b/dotfiles/hyprland/.local/bin/pinentry-fuzzel @@ -83,7 +83,7 @@ while read cmd rest; do else LABEL="reenter: " fi - PASS=$(fuzzel --prompt "$LABEL" --width 25 --lines 0 --cache /dev/null --password --dmenu) + PASS=$(fuzzel --prompt "$LABEL" --width 35 --lines 0 --cache /dev/null --password --dmenu --border-color=d47c59ff) if [ -z "$PASS" ]; then # User cancelled - return error to GPG rm -f "$LASTFILE" diff --git a/dotfiles/hyprland/.local/bin/screenshot b/dotfiles/hyprland/.local/bin/screenshot new file mode 100755 index 0000000..45925c6 --- /dev/null +++ b/dotfiles/hyprland/.local/bin/screenshot @@ -0,0 +1,23 @@ +#!/bin/sh +# Screenshot tool with fuzzel menu +# Usage: screenshot [region|fullscreen] + +DIR="$HOME/pictures/screenshots" +mkdir -p "$DIR" +FILE="$DIR/$(date +%Y-%m-%d_%H%M%S).png" + +# Capture +case "${1:-region}" in + region) grim -g "$(slurp)" "$FILE" || exit 1 ;; + fullscreen) grim "$FILE" || exit 1 ;; +esac + +# Menu +CHOICE=$(printf ' Copy Path\n Copy Image\n Annotate' | \ + fuzzel --dmenu --prompt "Screenshot: " --width 20 --lines 3) + +case "$CHOICE" in + *"Copy Path"*) echo -n "$FILE" | wl-copy --type text/plain ;; + *"Copy Image"*) wl-copy --type image/png < "$FILE" ;; + *"Annotate"*) satty --filename "$FILE" --output-filename "$FILE" --copy-command wl-copy ;; +esac diff --git a/dotfiles/hyprland/.local/bin/set-theme b/dotfiles/hyprland/.local/bin/set-theme index 44c256c..9bbcbd4 100755 --- a/dotfiles/hyprland/.local/bin/set-theme +++ b/dotfiles/hyprland/.local/bin/set-theme @@ -56,8 +56,13 @@ apply_theme() { # hy3 tab bar (monocle mode) hyprctl keyword plugin:hy3:tabs:col.active "rgba(474544ff)" hyprctl keyword plugin:hy3:tabs:col.active.text "rgba(969385ff)" - hyprctl keyword plugin:hy3:tabs:col.inactive "rgba(d0cbc0ff)" - hyprctl keyword plugin:hy3:tabs:col.inactive.text "rgba(d0cbc0ff)" + hyprctl keyword plugin:hy3:tabs:col.active.border "rgba(d7af5fff)" + hyprctl keyword plugin:hy3:tabs:col.focused "rgba(474544ff)" + hyprctl keyword plugin:hy3:tabs:col.focused.text "rgba(969385ff)" + hyprctl keyword plugin:hy3:tabs:col.focused.border "rgba(d7af5fff)" + hyprctl keyword plugin:hy3:tabs:col.inactive "rgba(2a2725ff)" + hyprctl keyword plugin:hy3:tabs:col.inactive.text "rgba(6c6a60ff)" + hyprctl keyword plugin:hy3:tabs:col.inactive.border "rgba(2a2725ff)" hyprctl keyword plugin:hy3:tabs:col.urgent "rgba(d47c59ff)" hyprctl keyword plugin:hy3:tabs:col.locked "rgba(8a9496ff)" ;; @@ -68,8 +73,13 @@ apply_theme() { # hy3 tab bar (monocle mode) hyprctl keyword plugin:hy3:tabs:col.active "rgba(444444ff)" hyprctl keyword plugin:hy3:tabs:col.active.text "rgba(bbbbbbff)" - hyprctl keyword plugin:hy3:tabs:col.inactive "rgba(c5c8c6ff)" - hyprctl keyword plugin:hy3:tabs:col.inactive.text "rgba(c5c8c6ff)" + hyprctl keyword plugin:hy3:tabs:col.active.border "rgba(daa520ff)" + hyprctl keyword plugin:hy3:tabs:col.focused "rgba(444444ff)" + hyprctl keyword plugin:hy3:tabs:col.focused.text "rgba(bbbbbbff)" + hyprctl keyword plugin:hy3:tabs:col.focused.border "rgba(daa520ff)" + hyprctl keyword plugin:hy3:tabs:col.inactive "rgba(333333ff)" + hyprctl keyword plugin:hy3:tabs:col.inactive.text "rgba(888888ff)" + hyprctl keyword plugin:hy3:tabs:col.inactive.border "rgba(333333ff)" hyprctl keyword plugin:hy3:tabs:col.urgent "rgba(cc6666ff)" hyprctl keyword plugin:hy3:tabs:col.locked "rgba(8abeb7ff)" ;; @@ -78,6 +88,9 @@ apply_theme() { # Save current theme echo "$theme" > "$CURRENT_FILE" + # Set default wallpaper + swww img ~/pictures/wallpaper/trondheim-norway.jpg 2>/dev/null + # Reload applications killall -SIGUSR2 waybar 2>/dev/null pkill dunst && dunst & diff --git a/dotfiles/hyprland/.local/bin/waybar-disk b/dotfiles/hyprland/.local/bin/waybar-disk new file mode 100755 index 0000000..6050653 --- /dev/null +++ b/dotfiles/hyprland/.local/bin/waybar-disk @@ -0,0 +1,7 @@ +#!/bin/sh +# Waybar disk usage module with warning/critical states +PCT=$(df --output=pcent / | tail -1 | tr -d ' %') +CLASS="" +[ "$PCT" -ge 80 ] && CLASS="warning" +[ "$PCT" -ge 90 ] && CLASS="critical" +printf '{"text": "%s%%", "class": "%s", "tooltip": "Root: %s%% used"}\n' "$PCT" "$CLASS" "$PCT" diff --git a/dotfiles/hyprland/.local/bin/waybar-netspeed b/dotfiles/hyprland/.local/bin/waybar-netspeed index 97e8e5e..a6296b0 100755 --- a/dotfiles/hyprland/.local/bin/waybar-netspeed +++ b/dotfiles/hyprland/.local/bin/waybar-netspeed @@ -6,7 +6,7 @@ INTERFACE=$(ip route | awk '/default/ {print $5; exit}') if [ -z "$INTERFACE" ]; then - echo '{"text": " Disconnected", "tooltip": "No network connection", "class": "disconnected"}' + echo '{"text": " Offline", "tooltip": "No network connection", "class": "disconnected"}' exit 0 fi diff --git a/dotfiles/hyprland/.local/share/applications/android-file-transfer.desktop b/dotfiles/hyprland/.local/share/applications/android-file-transfer.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/android-file-transfer.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/arandr.desktop b/dotfiles/hyprland/.local/share/applications/arandr.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/arandr.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/avahi-discover.desktop b/dotfiles/hyprland/.local/share/applications/avahi-discover.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/avahi-discover.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/blueman-adapters.desktop b/dotfiles/hyprland/.local/share/applications/blueman-adapters.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/blueman-adapters.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/blueman-manager.desktop b/dotfiles/hyprland/.local/share/applications/blueman-manager.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/blueman-manager.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/bssh.desktop b/dotfiles/hyprland/.local/share/applications/bssh.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/bssh.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/bvnc.desktop b/dotfiles/hyprland/.local/share/applications/bvnc.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/bvnc.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/caffeine.desktop b/dotfiles/hyprland/.local/share/applications/caffeine.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/caffeine.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/calibre-ebook-edit.desktop b/dotfiles/hyprland/.local/share/applications/calibre-ebook-edit.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/calibre-ebook-edit.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/calibre-ebook-viewer.desktop b/dotfiles/hyprland/.local/share/applications/calibre-ebook-viewer.desktop new file mode 100644 index 0000000..0dbe42d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/calibre-ebook-viewer.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=Calibre E-book Viewer +GenericName=Viewer for E-books +Comment=Viewer for E-books in all the major formats +TryExec=ebook-viewer +Exec=ebook-viewer --detach %f +Icon=calibre-viewer +Categories=Office;Viewer; +Keywords=epub;ebook;viewer; +MimeType=application/epub+zip;application/ereader;application/oebps-package+xml;application/vnd.ctc-posml;application/vnd.ms-word.document.macroenabled.12;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/x-cb7;application/x-cbc;application/x-cbr;application/x-cbz;application/x-mobi8-ebook;application/x-mobipocket-ebook;application/x-mobipocket-subscription;application/x-sony-bbeb;image/vnd.djvu; diff --git a/dotfiles/hyprland/.local/share/applications/calibre-lrfviewer.desktop b/dotfiles/hyprland/.local/share/applications/calibre-lrfviewer.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/calibre-lrfviewer.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/cmake-gui.desktop b/dotfiles/hyprland/.local/share/applications/cmake-gui.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/cmake-gui.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/compton.desktop b/dotfiles/hyprland/.local/share/applications/compton.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/compton.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/conky.desktop b/dotfiles/hyprland/.local/share/applications/conky.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/conky.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/cups.desktop b/dotfiles/hyprland/.local/share/applications/cups.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/cups.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/dwm.desktop b/dotfiles/hyprland/.local/share/applications/dwm.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/dwm.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/emacs-mail.desktop b/dotfiles/hyprland/.local/share/applications/emacs-mail.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/emacs-mail.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/emacsclient-mail.desktop b/dotfiles/hyprland/.local/share/applications/emacsclient-mail.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/emacsclient-mail.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/file.desktop b/dotfiles/hyprland/.local/share/applications/file.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/file.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/foot-server.desktop b/dotfiles/hyprland/.local/share/applications/foot-server.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/foot-server.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/footclient.desktop b/dotfiles/hyprland/.local/share/applications/footclient.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/footclient.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gammastep-indicator.desktop b/dotfiles/hyprland/.local/share/applications/gammastep-indicator.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gammastep-indicator.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gammastep.desktop b/dotfiles/hyprland/.local/share/applications/gammastep.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gammastep.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gcr-prompter.desktop b/dotfiles/hyprland/.local/share/applications/gcr-prompter.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gcr-prompter.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gcr-viewer.desktop b/dotfiles/hyprland/.local/share/applications/gcr-viewer.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gcr-viewer.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/geoclue-demo-agent.desktop b/dotfiles/hyprland/.local/share/applications/geoclue-demo-agent.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/geoclue-demo-agent.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/geoclue-where-am-i.desktop b/dotfiles/hyprland/.local/share/applications/geoclue-where-am-i.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/geoclue-where-am-i.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gkbd-keyboard-display.desktop b/dotfiles/hyprland/.local/share/applications/gkbd-keyboard-display.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gkbd-keyboard-display.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/google-chrome.desktop b/dotfiles/hyprland/.local/share/applications/google-chrome.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/google-chrome.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/google-maps-geo-handler.desktop b/dotfiles/hyprland/.local/share/applications/google-maps-geo-handler.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/google-maps-geo-handler.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/gtk-lshw.desktop b/dotfiles/hyprland/.local/share/applications/gtk-lshw.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/gtk-lshw.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/htop.desktop b/dotfiles/hyprland/.local/share/applications/htop.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/htop.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/hy3-util.desktop b/dotfiles/hyprland/.local/share/applications/hy3-util.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/hy3-util.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/hyprland.desktop b/dotfiles/hyprland/.local/share/applications/hyprland.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/hyprland.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/img.desktop b/dotfiles/hyprland/.local/share/applications/img.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/img.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/insync-helper.desktop b/dotfiles/hyprland/.local/share/applications/insync-helper.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/insync-helper.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/ipython.desktop b/dotfiles/hyprland/.local/share/applications/ipython.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/ipython.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/jconsole.desktop b/dotfiles/hyprland/.local/share/applications/jconsole.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/jconsole.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/jshell.desktop b/dotfiles/hyprland/.local/share/applications/jshell.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/jshell.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/jvisualvm.desktop b/dotfiles/hyprland/.local/share/applications/jvisualvm.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/jvisualvm.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/libreoffice-base.desktop b/dotfiles/hyprland/.local/share/applications/libreoffice-base.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/libreoffice-base.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/lock-screen.desktop b/dotfiles/hyprland/.local/share/applications/lock-screen.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/lock-screen.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/logout.desktop b/dotfiles/hyprland/.local/share/applications/logout.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/logout.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/lstopo.desktop b/dotfiles/hyprland/.local/share/applications/lstopo.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/lstopo.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/lxappearance.desktop b/dotfiles/hyprland/.local/share/applications/lxappearance.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/lxappearance.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/mail.desktop b/dotfiles/hyprland/.local/share/applications/mail.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/mail.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/nautilus-autorun-software.desktop b/dotfiles/hyprland/.local/share/applications/nautilus-autorun-software.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/nautilus-autorun-software.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/nm-applet.desktop b/dotfiles/hyprland/.local/share/applications/nm-applet.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/nm-applet.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/nm-connection-editor.desktop b/dotfiles/hyprland/.local/share/applications/nm-connection-editor.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/nm-connection-editor.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/nsxiv.desktop b/dotfiles/hyprland/.local/share/applications/nsxiv.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/nsxiv.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/openstreetmap-geo-handler.desktop b/dotfiles/hyprland/.local/share/applications/openstreetmap-geo-handler.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/openstreetmap-geo-handler.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.flameshot.Flameshot.desktop b/dotfiles/hyprland/.local/share/applications/org.flameshot.Flameshot.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.flameshot.Flameshot.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.freedesktop.Xwayland.desktop b/dotfiles/hyprland/.local/share/applications/org.freedesktop.Xwayland.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.freedesktop.Xwayland.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.gnome.Zenity.desktop b/dotfiles/hyprland/.local/share/applications/org.gnome.Zenity.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.gnome.Zenity.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt.desktop b/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt5.desktop b/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt5.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.gnupg.pinentry-qt5.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.kde.polkit-kde-authentication-agent-1.desktop b/dotfiles/hyprland/.local/share/applications/org.kde.polkit-kde-authentication-agent-1.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.kde.polkit-kde-authentication-agent-1.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-cb.desktop b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-cb.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-cb.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-djvu.desktop b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-djvu.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-djvu.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-pdf-mupdf.desktop b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-pdf-mupdf.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/org.pwmt.zathura-pdf-mupdf.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/pdf.desktop b/dotfiles/hyprland/.local/share/applications/pdf.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/pdf.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/picom.desktop b/dotfiles/hyprland/.local/share/applications/picom.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/picom.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/proton-bridge.desktop b/dotfiles/hyprland/.local/share/applications/proton-bridge.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/proton-bridge.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/qt5ct.desktop b/dotfiles/hyprland/.local/share/applications/qt5ct.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/qt5ct.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/qt6ct.desktop b/dotfiles/hyprland/.local/share/applications/qt6ct.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/qt6ct.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/qv4l2.desktop b/dotfiles/hyprland/.local/share/applications/qv4l2.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/qv4l2.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/qvidcap.desktop b/dotfiles/hyprland/.local/share/applications/qvidcap.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/qvidcap.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/ranger.desktop b/dotfiles/hyprland/.local/share/applications/ranger.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/ranger.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/reboot.desktop b/dotfiles/hyprland/.local/share/applications/reboot.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/reboot.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/redshift-gtk.desktop b/dotfiles/hyprland/.local/share/applications/redshift-gtk.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/redshift-gtk.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/redshift.desktop b/dotfiles/hyprland/.local/share/applications/redshift.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/redshift.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/rofi-theme-selector.desktop b/dotfiles/hyprland/.local/share/applications/rofi-theme-selector.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/rofi-theme-selector.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/rofi.desktop b/dotfiles/hyprland/.local/share/applications/rofi.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/rofi.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/shutdown.desktop b/dotfiles/hyprland/.local/share/applications/shutdown.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/shutdown.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/suspend.desktop b/dotfiles/hyprland/.local/share/applications/suspend.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/suspend.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/text.desktop b/dotfiles/hyprland/.local/share/applications/text.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/text.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/thunar-bulk-rename.desktop b/dotfiles/hyprland/.local/share/applications/thunar-bulk-rename.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/thunar-bulk-rename.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/thunar-settings.desktop b/dotfiles/hyprland/.local/share/applications/thunar-settings.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/thunar-settings.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/thunar.desktop b/dotfiles/hyprland/.local/share/applications/thunar.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/thunar.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/torbrowser-settings.desktop b/dotfiles/hyprland/.local/share/applications/torbrowser-settings.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/torbrowser-settings.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/user-dirs-update-gtk.desktop b/dotfiles/hyprland/.local/share/applications/user-dirs-update-gtk.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/user-dirs-update-gtk.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/vim.desktop b/dotfiles/hyprland/.local/share/applications/vim.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/vim.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/wheelmap-geo-handler.desktop b/dotfiles/hyprland/.local/share/applications/wheelmap-geo-handler.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/wheelmap-geo-handler.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xcolor.desktop b/dotfiles/hyprland/.local/share/applications/xcolor.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xcolor.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xdg-desktop-portal-gtk.desktop b/dotfiles/hyprland/.local/share/applications/xdg-desktop-portal-gtk.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xdg-desktop-portal-gtk.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xdvi.desktop b/dotfiles/hyprland/.local/share/applications/xdvi.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xdvi.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xfce4-about.desktop b/dotfiles/hyprland/.local/share/applications/xfce4-about.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xfce4-about.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xgps.desktop b/dotfiles/hyprland/.local/share/applications/xgps.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xgps.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true diff --git a/dotfiles/hyprland/.local/share/applications/xgpsspeed.desktop b/dotfiles/hyprland/.local/share/applications/xgpsspeed.desktop new file mode 100644 index 0000000..5829b2d --- /dev/null +++ b/dotfiles/hyprland/.local/share/applications/xgpsspeed.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +NoDisplay=true |
