From 695a05d4ad5e0aaf9e0d5101f0338ea6030a3a2d Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 30 Jun 2025 21:58:03 -0500 Subject: Fix more XDG paths --- sh/aliases | 2 +- sh/profile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sh/aliases b/sh/aliases index a56a25c..93784e7 100644 --- a/sh/aliases +++ b/sh/aliases @@ -92,7 +92,7 @@ alias s='sudo systemctl' #alias ursm='env SVDIR="$HOME/.local/sv/" rsm' # XDG dirs fix -alias svn="svn --config-dir \"$XDG_CONFIG_HOME\"/subversion" +alias svn="svn --config-dir $XDG_CONFIG_HOME/subversion" alias adb="HOME="$XDG_DATA_HOME"/android adb" alias wget="wget --hsts-file=\"$XDG_DATA_HOME/wget-hsts\"" alias yarn="yarn --use-yarnrc $XDG_CONFIG_HOME/yarn/config" diff --git a/sh/profile b/sh/profile index 4337cc0..45911b5 100644 --- a/sh/profile +++ b/sh/profile @@ -22,6 +22,8 @@ export ADB_VENDOR_KEY="$XDG_CONFIG_HOME"/android export LESSHISTFILE=- # Fixing Paths +export RENPY_PATH_TO_SAVES="$XDG_DATA_HOME" +export PARALLEL_HOME="$XDG_CONFIG_HOME"/parallel export ZPLUG_HOME="$XDG_DATA_HOME/zplug" export DOTNET_CLI_HOME="$XDG_DATA_HOME"/dotnet export MBSYNCRC="$XDG_CONFIG_HOME"/isync/mbsyncrc -- cgit v1.2.3 From 64187650dcb08fc08a219412024ab454613ac596 Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 30 Jun 2025 21:58:45 -0500 Subject: Ignore parallel dir --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index dc2344b..9575ccc 100644 --- a/.gitignore +++ b/.gitignore @@ -179,6 +179,7 @@ okularpartrc okularrc openrazer/ package-lock.json +parallel/ pavucontrol.ini pcmanfm/ pcmanfm-qt/ -- cgit v1.2.3 From 111f676f65e42e2d0174797a452cb0ab09c03c87 Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 2 Jul 2025 19:14:47 -0500 Subject: Set hyprland autostart to COSMIC icons --- hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 9e09cdb..c0f5806 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -16,7 +16,7 @@ exec-once = waybar exec-once = pypr exec-once = lxqt-policykit-agent exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest-Solid' -exec-once = import-gsettings icon-theme 'Mint-X-Grey' +exec-once = import-gsettings icon-theme 'COSMIC' exec-once = import-gsettings cursor-theme 'BreezeX-Black' exec-once = xrdb -load "$XDG_CONFIG_HOME"/X11/xresources exec-once = com.github.wwmm.easyeffects -- cgit v1.2.3 From 699657e22faa56b6e142aae7c02d025c21df322f Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 2 Jul 2025 19:16:53 -0500 Subject: Ignore zsh/.zkbd/ --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9575ccc..3dcf353 100644 --- a/.gitignore +++ b/.gitignore @@ -309,4 +309,5 @@ zsh/hist zsh/.zcompdump zsh/zcompdump zsh/zfunc +zsh/.zkbd/ zsh/.zsh_theme -- cgit v1.2.3 From 8fa82b7d4bf461bdeb5559214ed51199c945b3da Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 4 Jul 2025 08:27:47 -0500 Subject: Configure nwg-bar --- nwg-bar/bar.json | 22 ++++++++++++++++++++++ nwg-bar/style.css | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 nwg-bar/bar.json create mode 100644 nwg-bar/style.css diff --git a/nwg-bar/bar.json b/nwg-bar/bar.json new file mode 100644 index 0000000..01a92c3 --- /dev/null +++ b/nwg-bar/bar.json @@ -0,0 +1,22 @@ +[ + { + "label": "Lock", + "exec": "loginctl lock-session", + "icon": "/usr/share/nwg-bar/images/system-lock-screen.svg" + }, + { + "label": "Logout", + "exec": "hyprctl dispatch exit", + "icon": "/usr/share/nwg-bar/images/system-log-out.svg" + }, + { + "label": "Reboot", + "exec": "systemctl reboot", + "icon": "/usr/share/nwg-bar/images/system-reboot.svg" + }, + { + "label": "Shutdown", + "exec": "systemctl -i poweroff", + "icon": "/usr/share/nwg-bar/images/system-shutdown.svg" + } +] diff --git a/nwg-bar/style.css b/nwg-bar/style.css new file mode 100644 index 0000000..023d282 --- /dev/null +++ b/nwg-bar/style.css @@ -0,0 +1,35 @@ +window { + background-color: rgba (0, 0, 0, 1.0) +} + +/* Outer bar container, takes all the window width/height */ +#outer-box { + margin: 0px +} + +/* Inner bar container, surrounds buttons */ +#inner-box { + background-color: rgba (27, 29, 28, 0.85); + border-radius: 10px; + border-style: none; + border-width: 1px; + border-color: rgba (156, 142, 122, 0.7); + padding: 5px; + margin: 5px +} + +button, image { + background: none; + border: none; + box-shadow: none +} + +button { + padding-left: 10px; + padding-right: 10px; + margin: 5px +} + +button:hover { + background-color: rgba (25, 138, 68, 1.0) +} -- cgit v1.2.3