Compare commits
No commits in common. "2dbba249daae2e83fc177231fb8924981dc11f0a" and "6f5d421b4debcd5f67c0e77003ce08dee4078c3a" have entirely different histories.
2dbba249da
...
6f5d421b4d
|
@ -1,6 +1,5 @@
|
||||||
env = WLR_DRM_DEVICES,/dev/dri/card0:/dev/dri/card1
|
env = WLR_DRM_DEVICES,/dev/dri/card0:/dev/dri/card1
|
||||||
env = WLR_NO_HARDWARE_CURSORS,1
|
env = WLR_NO_HARDWARE_CURSORS,1
|
||||||
env = TERMINAL,alacritty
|
|
||||||
|
|
||||||
$scripts = /home/user/.config/scripts
|
$scripts = /home/user/.config/scripts
|
||||||
|
|
||||||
|
@ -124,8 +123,8 @@ gestures {
|
||||||
$mainMod = SUPER
|
$mainMod = SUPER
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bindr = $mainMod, SUPER_L, exec, pkill rofi || rofi -show drun
|
bindr = $mainMod, SUPER_L, exec, $scripts/toggle_rofi.sh
|
||||||
bindr = $mainMod, SUPER_R, exec, pkill rofi || rofi -show drun
|
bindr = $mainMod, SUPER_R, exec, $scripts/toggle_rofi.sh
|
||||||
bind = $mainMod, return, exec, $scripts/launch_alacritty.sh $(hyprctl activewindow -j | jq .pid)
|
bind = $mainMod, return, exec, $scripts/launch_alacritty.sh $(hyprctl activewindow -j | jq .pid)
|
||||||
bind = $mainMod SHIFT, return, exec, alacritty
|
bind = $mainMod SHIFT, return, exec, alacritty
|
||||||
bind = $mainMod, Q, killactive,
|
bind = $mainMod, Q, killactive,
|
||||||
|
@ -169,10 +168,10 @@ bind = $mainMod SHIFT, H, movewindow, l
|
||||||
bind = $mainMod SHIFT, L, movewindow, r
|
bind = $mainMod SHIFT, L, movewindow, r
|
||||||
bind = $mainMod SHIFT, K, movewindow, u
|
bind = $mainMod SHIFT, K, movewindow, u
|
||||||
bind = $mainMod SHIFT, J, movewindow, d
|
bind = $mainMod SHIFT, J, movewindow, d
|
||||||
binde = $mainMod ALT, L, resizeactive, 20 0
|
bind = $mainMod ALT, L, resizeactive, 20 0
|
||||||
binde = $mainMod ALT, H, resizeactive, -20 0
|
bind = $mainMod ALT, H, resizeactive, -20 0
|
||||||
binde = $mainMod ALT, K, resizeactive, 0 -20
|
bind = $mainMod ALT, K, resizeactive, 0 -20
|
||||||
binde = $mainMod ALT, J, resizeactive, 0 20
|
bind = $mainMod ALT, J, resizeactive, 0 20
|
||||||
|
|
||||||
bind = $mainMod, 1, exec, hyprsome workspace 1
|
bind = $mainMod, 1, exec, hyprsome workspace 1
|
||||||
bind = $mainMod, 2, exec, hyprsome workspace 2
|
bind = $mainMod, 2, exec, hyprsome workspace 2
|
||||||
|
|
|
@ -10,8 +10,7 @@ local function should_load(path)
|
||||||
[2] = "json.hpp",
|
[2] = "json.hpp",
|
||||||
[3] = "build",
|
[3] = "build",
|
||||||
[4] = "third-party",
|
[4] = "third-party",
|
||||||
[5] = "sfml/",
|
[5] = "sfml",
|
||||||
[5] = "SFML/",
|
|
||||||
[6] = "TinyXML"
|
[6] = "TinyXML"
|
||||||
}
|
}
|
||||||
local match = {
|
local match = {
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
if ps -C rofi > /dev/null
|
||||||
|
then
|
||||||
|
killall rofi
|
||||||
|
else
|
||||||
|
export TERMINAL=alacritty
|
||||||
|
rofi -show combi -combi-modi drun,calc:~/.config/rofi/show-calculator.sh -sort -levenshtein-sort
|
||||||
|
fi
|
|
@ -33,15 +33,15 @@ button:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
background-color: #023269;
|
background-color: #002F5F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
background-color: #023269;
|
background-color: #002F5F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
background-color: #023269;
|
background-color: #002F5F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
|
@ -77,7 +77,7 @@ button:hover {
|
||||||
#cpu.cpu2,
|
#cpu.cpu2,
|
||||||
#memory,
|
#memory,
|
||||||
#temperature {
|
#temperature {
|
||||||
background-color: #023269;
|
background-color: #002F5F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#taskbar button {
|
#taskbar button {
|
||||||
|
@ -91,7 +91,7 @@ button:hover {
|
||||||
margin-bottom:2px;
|
margin-bottom:2px;
|
||||||
}
|
}
|
||||||
#taskbar button.active {
|
#taskbar button.active {
|
||||||
background-color: #023269;
|
background-color: #002F5F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
|
|
|
@ -189,5 +189,5 @@ alias python=python3
|
||||||
alias r=". ranger"
|
alias r=". ranger"
|
||||||
alias cpr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1
|
alias cpr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1
|
||||||
alias mvr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files
|
alias mvr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files
|
||||||
alias rg="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
|
alias rg="rg --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
|
||||||
alias ag="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
|
alias ag="rg --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"
|
||||||
|
|
Loading…
Reference in New Issue