yay
This commit is contained in:
parent
f5ca21bb6f
commit
479f3abcf7
3 changed files with 16 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# This file contains fish universal variable definitions.
|
# This file contains fish universal variable definitions.
|
||||||
# VERSION: 3.0
|
# VERSION: 3.0
|
||||||
SETUVAR --export EDITOR:alacritty\x20\x2de\x20nvim
|
SETUVAR --export EDITOR:nvim
|
||||||
SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS
|
SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS
|
||||||
SETUVAR --export QT_QPA_PLATFORMTHEME:qt6ct
|
SETUVAR --export QT_QPA_PLATFORMTHEME:qt6ct
|
||||||
SETUVAR __fish_initialized:3800
|
SETUVAR __fish_initialized:3800
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ input {
|
||||||
touchpad {
|
touchpad {
|
||||||
// off
|
// off
|
||||||
tap
|
tap
|
||||||
// dwt
|
dwt
|
||||||
// dwtp
|
// dwtp
|
||||||
// drag false
|
// drag false
|
||||||
// drag-lock
|
// drag-lock
|
||||||
|
|
@ -415,6 +415,7 @@ binds {
|
||||||
XF86MonBrightnessUp allow-when-locked=true { spawn-sh "brightnessctl --class=backlight set +5% && brightnessnotify.fish"; }
|
XF86MonBrightnessUp allow-when-locked=true { spawn-sh "brightnessctl --class=backlight set +5% && brightnessnotify.fish"; }
|
||||||
XF86MonBrightnessDown allow-when-locked=true { spawn-sh "brightnessctl --class=backlight set 5%- && brightnessnotify.fish"; }
|
XF86MonBrightnessDown allow-when-locked=true { spawn-sh "brightnessctl --class=backlight set 5%- && brightnessnotify.fish"; }
|
||||||
|
|
||||||
|
|
||||||
// Open/close the Overview: a zoomed-out view of workspaces and windows.
|
// Open/close the Overview: a zoomed-out view of workspaces and windows.
|
||||||
// You can also move the mouse into the top-left hot corner,
|
// You can also move the mouse into the top-left hot corner,
|
||||||
// or do a four-finger swipe up on a touchpad.
|
// or do a four-finger swipe up on a touchpad.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Select folders in current semester
|
# Select folders in current semester
|
||||||
function open_semester
|
function open_semester
|
||||||
set recent "/home/never/Documents/InNa/25_WiSe/"
|
set recent "/home/never/Documents/InNa/26_SoSe/"
|
||||||
set options (ls $recent)
|
set options (ls $recent)
|
||||||
set input (menu $options)
|
set input (menu $options)
|
||||||
|
|
||||||
|
|
@ -11,7 +11,7 @@ end
|
||||||
|
|
||||||
# Open user directories
|
# Open user directories
|
||||||
function open_location
|
function open_location
|
||||||
set options "25_WiSe" " Documents" " Music" " Pictures" " Videos" " Downloads"
|
set options "Semester" " Documents" " Music" " Pictures" " Videos" " Downloads"
|
||||||
set input (menu $options)
|
set input (menu $options)
|
||||||
|
|
||||||
switch $input
|
switch $input
|
||||||
|
|
@ -43,7 +43,7 @@ function open_course
|
||||||
case $options[3]
|
case $options[3]
|
||||||
xdg-open "https://wuecampus.uni-wuerzburg.de/moodle/course/view.php?id=78361"
|
xdg-open "https://wuecampus.uni-wuerzburg.de/moodle/course/view.php?id=78361"
|
||||||
case $options[4]
|
case $options[4]
|
||||||
xdg-open ""
|
xdg-open "https://wuecampus.uni-wuerzburg.de/moodle/course/view.php?id=79204"
|
||||||
case $options[5]
|
case $options[5]
|
||||||
xdg-open "https://wuecampus.uni-wuerzburg.de/moodle/course/view.php?id=79247"
|
xdg-open "https://wuecampus.uni-wuerzburg.de/moodle/course/view.php?id=79247"
|
||||||
end
|
end
|
||||||
|
|
@ -140,9 +140,12 @@ function restore_notifications
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function set_keyboard_backlight
|
||||||
|
brightnessctl --device=white:kbd_backlight set (menu --index "0" "1" "2" "3" "4")
|
||||||
|
end
|
||||||
|
|
||||||
# Select sub menu
|
# Select sub menu
|
||||||
set options " Open Location" " Open WueCampus Course" " Select Audio Source" " Select Audio Sink" " Select Bluetooth" " Select Network" " Color Scheme" " Restore Notifications"
|
set options " Open Location" " Open WueCampus Course" " Select Audio Source" " Select Audio Sink" " Select Bluetooth" " Select Network" " Color Scheme" " Restore Notifications" " Set Keyboard Backlight"
|
||||||
set input (menu $options)
|
set input (menu $options)
|
||||||
|
|
||||||
switch $input
|
switch $input
|
||||||
|
|
@ -173,4 +176,7 @@ switch $input
|
||||||
|
|
||||||
case $options[8]
|
case $options[8]
|
||||||
restore_notifications
|
restore_notifications
|
||||||
|
|
||||||
|
case $options[9]
|
||||||
|
set_keyboard_backlight
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue