finishing cleaning

This commit is contained in:
Andrey Parhomenko 2024-07-11 03:33:08 +05:00
parent 14ea5529fc
commit 3ab0b28923
10 changed files with 7 additions and 91 deletions

View file

@ -52,6 +52,7 @@ export_loop \
MYVIMRC '$HOME/.vimrc'\ MYVIMRC '$HOME/.vimrc'\
XKB_DEFAULT_OPTIONS 'caps:escape' \ XKB_DEFAULT_OPTIONS 'caps:escape' \
\ \
XCOMPOSER 'river' \
XTERMINAL 'wayst' \ XTERMINAL 'wayst' \
XRUNNER 'fuzzel' \ XRUNNER 'fuzzel' \
XBAR 'waybar' \ XBAR 'waybar' \

View file

@ -1,10 +0,0 @@
#!/bin/env rc
rpath = `{dirname `{readlink -f $0}}
dot = $rpath/file
for(i in $dot/*){
ln = $home/.`{basename $i}
rm -rf $ln
echo $ln $i
ln -s $i $ln
}

View file

@ -3,9 +3,11 @@ rpath="$(dirname `readlink -f $0`)"
dot="$rpath/file" dot="$rpath/file"
cmd="$@" cmd="$@"
for i in $dot/* ; do for i in $dot/* ; do
ln="$HOME/.`basename $i`" from="$i"
to="$HOME/.`basename $i`"
rm -rf "$ln" rm -rf "$ln"
echo $ln $i echo "'$from'" "'$i'"
ln -s -f "$i" "$ln" rm -f "$to"
ln -s -f "$from" "$to"
done done

View file

@ -5,7 +5,7 @@ rpath="$(dirname `readlink -f $0`)"
for i in * ; do for i in * ; do
from="$rpath/$i" from="$rpath/$i"
to="$HOME/.config/`basename $i`" to="$HOME/.config/`basename $i`"
echo $from $to echo "'$from'" "'$to'"
ln -s -f "$from" "$to" ln -s -f "$from" "$to"
done done

View file

@ -1,8 +0,0 @@
[BatteryManagement]
BatteryCriticalAction=0
[General]
pausePlayersOnSuspend=false
[LowBattery][Display]
UseProfileSpecificDisplayBrightness=false

View file

@ -1,69 +0,0 @@
[AC]
icon=battery-charging
[AC][DPMSControl]
idleTime=600
lockBeforeTurnOff=0
[AC][DimDisplay]
idleTime=300000
[AC][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
triggerLidActionWhenExternalMonitorPresent=false
[AC][SuspendSession]
idleTime=900000
suspendThenHibernate=false
suspendType=1
[Activities][ad6209b7-0513-4299-a0ff-183655881f9d]
mode=None
[Battery]
icon=battery-060
[Battery][DPMSControl]
idleTime=300
lockBeforeTurnOff=0
[Battery][DimDisplay]
idleTime=120000
[Battery][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
triggerLidActionWhenExternalMonitorPresent=false
[Battery][SuspendSession]
idleTime=600000
suspendThenHibernate=false
suspendType=1
[LowBattery]
icon=battery-low
[LowBattery][DPMSControl]
idleTime=120
lockBeforeTurnOff=0
[LowBattery][DimDisplay]
idleTime=60000
[LowBattery][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
triggerLidActionWhenExternalMonitorPresent=false
[LowBattery][SuspendSession]
idleTime=300000
suspendThenHibernate=false
suspendType=1
[Migration]
MigratedActivitiesToPlasma6=powerdevilrc
MigratedProfilesToPlasma6=powerdevilrc

View file

View file