- fixed wrong dir targets
- added commands to toggle swapscape for hyprland - fixed a launch in autostart - wrong dir for keep finds
This commit is contained in:
parent
b95ae4c5c9
commit
889894aa1d
|
@ -34,8 +34,6 @@ if [ -f ~/.local/bin/system/paths.sh ]; then
|
||||||
source ~/.local/bin/system/paths.sh
|
source ~/.local/bin/system/paths.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export heartost="/home/iceyrazor/.steam/root/steamapps/music/Heartbound - OST"
|
|
||||||
|
|
||||||
alias fukn="sudo $@"
|
alias fukn="sudo $@"
|
||||||
[ doas ] && alias fukn="doas $@"
|
[ doas ] && alias fukn="doas $@"
|
||||||
|
|
||||||
|
@ -76,7 +74,11 @@ alias get_channel_id="xargs curl -s | grep -Eo 'channel_id=.{0,50}' | sed 's/\".
|
||||||
alias vasm="~/stuff/manual-programs/vasm/vasm6502_oldstyle -Fbin -dotdir "
|
alias vasm="~/stuff/manual-programs/vasm/vasm6502_oldstyle -Fbin -dotdir "
|
||||||
alias pipes="pipes.sh -t 0 -p 3 -f 30 -r 2000"
|
alias pipes="pipes.sh -t 0 -p 3 -f 30 -r 2000"
|
||||||
alias astro="astroterm --color --constellations --speed 10000 --fps 64 --unicode -i Arlington"
|
alias astro="astroterm --color --constellations --speed 10000 --fps 64 --unicode -i Arlington"
|
||||||
|
|
||||||
|
# hyprland
|
||||||
alias anim="hyprctl keyword animations:enabled "
|
alias anim="hyprctl keyword animations:enabled "
|
||||||
|
alias swap="hyprctl keyword input:kb_options caps:swapescape"
|
||||||
|
alias nswap="hyprctl keyword input:kb_options null"
|
||||||
|
|
||||||
# mounting
|
# mounting
|
||||||
alias umsu="fukn umount u"
|
alias umsu="fukn umount u"
|
||||||
|
|
|
@ -21,8 +21,8 @@ Us_keys_colemak = require("keys-US-colemak")
|
||||||
-- when client with a matching name is opened:
|
-- when client with a matching name is opened:
|
||||||
require("awful.hotkeys_popup.keys")
|
require("awful.hotkeys_popup.keys")
|
||||||
|
|
||||||
local HOMEDIR="/home/iceyrazor"
|
local HOMEDIR="/home/iceyrazor/"
|
||||||
mpris=HOMEDIR.."/stuff/scripts/system/mpris_player_control"
|
mpris=HOMEDIR..".local/bin/system/mpris_player_control"
|
||||||
|
|
||||||
|
|
||||||
local show_desktop = false
|
local show_desktop = false
|
||||||
|
@ -275,7 +275,7 @@ awful.screen.connect_for_each_screen(function(screen)
|
||||||
|
|
||||||
-- Add widgets to the wibox
|
-- Add widgets to the wibox
|
||||||
if screen.index==1 then
|
if screen.index==1 then
|
||||||
local stbar = awful.widget.watch(HOMEDIR..'/stuff/scripts/system/stbar/stbar-awesome.sh', 2)
|
local stbar = awful.widget.watch(HOMEDIR..'.local/bin/system/stbar/stbar-awesome.sh', 2)
|
||||||
local stbar = wibox.widget.background(stbar)
|
local stbar = wibox.widget.background(stbar)
|
||||||
stbar.bg = beautiful.bg_normal
|
stbar.bg = beautiful.bg_normal
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ fsyncb () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
syncfile=".surf/styles .urlview .local/bin/lf-gadgets .local/share/applications/custom .config/newsboat .config/zsh .keepass .config/Pinta .config/cmus stuff/notes stuff/openvpn-cons stuff/media/ICE stuff/scripts/iceys-linux-stuffs stuff/scripts/system"
|
syncfile=".surf/styles .urlview .local/bin/lf-gadgets .local/share/applications/custom .config/newsboat .config/zsh .keepass .config/Pinta .config/cmus stuff/notes stuff/openvpn-cons stuff/media/ICE stuff/scripts/iceys-linux-stuffs"
|
||||||
|
|
||||||
# stuff/scripts .gnupg
|
# stuff/scripts .gnupg
|
||||||
|
|
||||||
|
|
|
@ -54,14 +54,14 @@ fi
|
||||||
|
|
||||||
if [ -z "$(pgrep wezterm)" ]; then
|
if [ -z "$(pgrep wezterm)" ]; then
|
||||||
sleep 2
|
sleep 2
|
||||||
wezterm -e ~/stuff/scripts/system/task.sh &
|
wezterm -e ~/.local/bin/system/task.sh &
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ "$(cat /etc/hostname)" == "Kasino" ]; then
|
if [ "$(cat /etc/hostname)" == "Kasino" ]; then
|
||||||
if [ -z "$(pgrep vesktop)" ]; then
|
if [ -z "$(pgrep vesktop)" ]; then
|
||||||
sleep 2s
|
sleep 2s
|
||||||
vesktop & disown
|
dbus-run-session vesktop & disown
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$(pgrep gajim)" ]; then
|
if [ -z "$(pgrep gajim)" ]; then
|
||||||
|
|
|
@ -19,8 +19,8 @@ else
|
||||||
path_dirs="$path_dirs
|
path_dirs="$path_dirs
|
||||||
$yt_cli_dir
|
$yt_cli_dir
|
||||||
$(find ~/stuff/ -name theme-setter -type d)
|
$(find ~/stuff/ -name theme-setter -type d)
|
||||||
$(find $script_dir/keep/system -type d)
|
$(find $script_dir/keep/scripts -type d)
|
||||||
$(find $script_dir/env_private/keep/system -type d)"
|
$(find $script_dir/env_private/keep/scripts -type d)"
|
||||||
|
|
||||||
for s in $path_dirs; do
|
for s in $path_dirs; do
|
||||||
echo "adding $s to path"
|
echo "adding $s to path"
|
||||||
|
|
Loading…
Reference in New Issue