mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
Compare commits
No commits in common. "42ed7c1c8722e77c284074ff325baf1b7266d2c1" and "3d39d554542f1fa596b98563a930c39aa678a7d0" have entirely different histories.
42ed7c1c87
...
3d39d55454
@ -1,27 +1,9 @@
|
||||
#!/usr/bin/env fish
|
||||
|
||||
###---Start app if not running already---###
|
||||
###---Functions---###
|
||||
function start_if_not_running
|
||||
###---iceweasel/firefox is weird---###
|
||||
if [ $argv[1] = "iceweasel" ]
|
||||
set PROCESS_NAME "iceweasel|MainThread"
|
||||
else
|
||||
set PROCESS_NAME $argv[1]
|
||||
end
|
||||
|
||||
if [ (pgrep -u (id -u) -x "$PROCESS_NAME" | wc -l) -lt 1 ]
|
||||
if type -q $argv[1]
|
||||
eval "$argv[1] &"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
###---Start app in alacritty if not running already---###
|
||||
function start_shell_if_not_running
|
||||
if [ (pgrep -u (id -u) -x $argv[1] | wc -l) -lt 1 ]
|
||||
if type -q $argv[1]
|
||||
eval "alacritty --class $argv[1],$argv[1] -e $argv[1] &"
|
||||
end
|
||||
eval "$argv[1] &"
|
||||
end
|
||||
end
|
||||
|
||||
@ -42,10 +24,9 @@ if [ -x /usr/bin/numlockx ]
|
||||
/usr/bin/numlockx on
|
||||
end
|
||||
|
||||
###---Get monitor count---###
|
||||
###---Monitors---###
|
||||
set SCREENCOUNT (xrandr | grep -c "\*")
|
||||
|
||||
###---Monitors---###
|
||||
if [ "$SCREENCOUNT" -eq 2 ]
|
||||
bspc monitor DP-1 -d 2 3 4 5 6 7 8 9 0
|
||||
bspc monitor HDMI-2 -d 1
|
||||
@ -87,23 +68,13 @@ bspc config window_gap 4
|
||||
###---Rules---###
|
||||
bspc rule -a "Syncthing GTK" state=floating
|
||||
bspc rule -a Gimp state=floating follow=on
|
||||
|
||||
bspc rule -a float state=floating
|
||||
bspc rule -a fullscreen state=fullscreen
|
||||
|
||||
bspc rule -a Spotify desktop='^4'
|
||||
bspc rule -a Spt desktop='^4'
|
||||
bspc rule -a Emacs state=tiled
|
||||
bspc rule -a Zathura state=tiled
|
||||
|
||||
bspc rule -a iceweasel desktop='^1'
|
||||
bspc rule -a Brave-browser desktop='^1'
|
||||
bspc rule -a Element desktop='^3'
|
||||
bspc rule -a Element-Nightly desktop='^3'
|
||||
bspc rule -a weechat desktop='^3'
|
||||
bspc rule -a castero desktop='^4'
|
||||
bspc rule -a Spt desktop='^4'
|
||||
bspc rule -a jetbrains-webstorm desktop='^8'
|
||||
bspc rule -a Emacs desktop='^9'
|
||||
|
||||
bspc rule -a Brave-browser desktop='^9'
|
||||
bspc rule -a scratchpad sticky=on state=floating
|
||||
bspc rule -a scratchmacs sticky=on state=floating
|
||||
|
||||
@ -115,16 +86,7 @@ start_if_not_running pasystray
|
||||
start_if_not_running redshift-gtk
|
||||
start_if_not_running syncthing-gtk
|
||||
start_if_not_running caffeine
|
||||
|
||||
start_if_not_running brave
|
||||
start_if_not_running iceweasel
|
||||
start_if_not_running emacs
|
||||
start_if_not_running element-desktop
|
||||
start_if_not_running element-desktop-nightly
|
||||
|
||||
if [ "$SCREENCOUNT" -eq 2 ]
|
||||
start_shell_if_not_running castero
|
||||
end
|
||||
|
||||
pkill -f cleanfullscreen
|
||||
~/.local/bin/cleanfullscreen &
|
||||
|
Loading…
Reference in New Issue
Block a user